├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html └── nav.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts ├── 2014-11-06-java-trick-1.md ├── 2014-11-16-apache-user-authorized.md ├── 2014-11-26-android-viewpager.md ├── 2015-01-06-ftp-no-download.md ├── 2015-04-29-java-hashmap-trick.md ├── 2015-05-04-android-ndk.md ├── 2015-05-08-js-rorate-image.md ├── 2015-06-28-android-context.md ├── 2015-06-28-android-unleak-hander.md ├── 2015-07-02-image-gray.md ├── 2015-07-10-java-operate.md ├── 2015-07-11-jekyll-search.md ├── 2015-07-17-android-webview-optimize.md ├── 2015-07-20-get-max-from-every-group.md └── 2015-07-28-android-trick.md ├── about ├── css │ ├── component.css │ └── default.css ├── fonts │ ├── fontawesome.eot │ ├── fontawesome.svg │ ├── fontawesome.ttf │ ├── fontawesome.woff │ └── timelineicons │ │ ├── ecoico.dev.svg │ │ ├── ecoico.eot │ │ ├── ecoico.svg │ │ ├── ecoico.ttf │ │ └── ecoico.woff ├── img │ ├── alipay.jpg │ ├── lyd.jpg │ └── tmall.png ├── index.html └── js │ └── modernizr.custom.js ├── apps.html ├── codeboy.me.png ├── css ├── codeboy.css ├── codeboy.min.css └── syntax.css ├── feed.xml ├── img ├── about-bg.jpg ├── close.png ├── contact-bg.jpg ├── favicon.ico ├── ftp_server.png ├── github.png ├── home-bg.jpg ├── image-gray.png ├── image-rgb.png ├── image-src.png ├── ios-restrict-app.png ├── message_to_mail.png ├── open-bg.jpg ├── post-bg-android.jpg ├── post-bg-iphone.jpg ├── post-bg-java.jpg ├── post-bg-theory.jpg ├── post-bg-tranquil.jpg ├── post-bg-unix.jpg ├── post-bg-web.jpg ├── search.png ├── tags-bg.jpg ├── ustc_client.png └── zzu_client.png ├── index.html ├── js ├── codeboy.js ├── codeboy.min.js └── jquery.tagcloud.js ├── open.html ├── search ├── cb-search.json ├── css │ └── cb-search.css ├── img │ ├── cb-close.png │ └── cb-search.png └── js │ ├── bootstrap3-typeahead.min.js │ └── cb-search.js ├── tags.html └── wechat ├── create.sh └── template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | blogtest.codeboy.me 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2014-11-06-java-trick-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2014-11-06-java-trick-1.md -------------------------------------------------------------------------------- /_posts/2014-11-16-apache-user-authorized.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2014-11-16-apache-user-authorized.md -------------------------------------------------------------------------------- /_posts/2014-11-26-android-viewpager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2014-11-26-android-viewpager.md -------------------------------------------------------------------------------- /_posts/2015-01-06-ftp-no-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-01-06-ftp-no-download.md -------------------------------------------------------------------------------- /_posts/2015-04-29-java-hashmap-trick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-04-29-java-hashmap-trick.md -------------------------------------------------------------------------------- /_posts/2015-05-04-android-ndk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-05-04-android-ndk.md -------------------------------------------------------------------------------- /_posts/2015-05-08-js-rorate-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-05-08-js-rorate-image.md -------------------------------------------------------------------------------- /_posts/2015-06-28-android-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-06-28-android-context.md -------------------------------------------------------------------------------- /_posts/2015-06-28-android-unleak-hander.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-06-28-android-unleak-hander.md -------------------------------------------------------------------------------- /_posts/2015-07-02-image-gray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-07-02-image-gray.md -------------------------------------------------------------------------------- /_posts/2015-07-10-java-operate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-07-10-java-operate.md -------------------------------------------------------------------------------- /_posts/2015-07-11-jekyll-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-07-11-jekyll-search.md -------------------------------------------------------------------------------- /_posts/2015-07-17-android-webview-optimize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-07-17-android-webview-optimize.md -------------------------------------------------------------------------------- /_posts/2015-07-20-get-max-from-every-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-07-20-get-max-from-every-group.md -------------------------------------------------------------------------------- /_posts/2015-07-28-android-trick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/_posts/2015-07-28-android-trick.md -------------------------------------------------------------------------------- /about/css/component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/css/component.css -------------------------------------------------------------------------------- /about/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/css/default.css -------------------------------------------------------------------------------- /about/fonts/fontawesome.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/fontawesome.eot -------------------------------------------------------------------------------- /about/fonts/fontawesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/fontawesome.svg -------------------------------------------------------------------------------- /about/fonts/fontawesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/fontawesome.ttf -------------------------------------------------------------------------------- /about/fonts/fontawesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/fontawesome.woff -------------------------------------------------------------------------------- /about/fonts/timelineicons/ecoico.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/timelineicons/ecoico.dev.svg -------------------------------------------------------------------------------- /about/fonts/timelineicons/ecoico.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/timelineicons/ecoico.eot -------------------------------------------------------------------------------- /about/fonts/timelineicons/ecoico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/timelineicons/ecoico.svg -------------------------------------------------------------------------------- /about/fonts/timelineicons/ecoico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/timelineicons/ecoico.ttf -------------------------------------------------------------------------------- /about/fonts/timelineicons/ecoico.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/fonts/timelineicons/ecoico.woff -------------------------------------------------------------------------------- /about/img/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/img/alipay.jpg -------------------------------------------------------------------------------- /about/img/lyd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/img/lyd.jpg -------------------------------------------------------------------------------- /about/img/tmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/img/tmall.png -------------------------------------------------------------------------------- /about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/index.html -------------------------------------------------------------------------------- /about/js/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/about/js/modernizr.custom.js -------------------------------------------------------------------------------- /apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/apps.html -------------------------------------------------------------------------------- /codeboy.me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/codeboy.me.png -------------------------------------------------------------------------------- /css/codeboy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/css/codeboy.css -------------------------------------------------------------------------------- /css/codeboy.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/css/codeboy.min.css -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/css/syntax.css -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/feed.xml -------------------------------------------------------------------------------- /img/about-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/about-bg.jpg -------------------------------------------------------------------------------- /img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/close.png -------------------------------------------------------------------------------- /img/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/contact-bg.jpg -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/ftp_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/ftp_server.png -------------------------------------------------------------------------------- /img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/github.png -------------------------------------------------------------------------------- /img/home-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/home-bg.jpg -------------------------------------------------------------------------------- /img/image-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/image-gray.png -------------------------------------------------------------------------------- /img/image-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/image-rgb.png -------------------------------------------------------------------------------- /img/image-src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/image-src.png -------------------------------------------------------------------------------- /img/ios-restrict-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/ios-restrict-app.png -------------------------------------------------------------------------------- /img/message_to_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/message_to_mail.png -------------------------------------------------------------------------------- /img/open-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/open-bg.jpg -------------------------------------------------------------------------------- /img/post-bg-android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-android.jpg -------------------------------------------------------------------------------- /img/post-bg-iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-iphone.jpg -------------------------------------------------------------------------------- /img/post-bg-java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-java.jpg -------------------------------------------------------------------------------- /img/post-bg-theory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-theory.jpg -------------------------------------------------------------------------------- /img/post-bg-tranquil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-tranquil.jpg -------------------------------------------------------------------------------- /img/post-bg-unix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-unix.jpg -------------------------------------------------------------------------------- /img/post-bg-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/post-bg-web.jpg -------------------------------------------------------------------------------- /img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/search.png -------------------------------------------------------------------------------- /img/tags-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/tags-bg.jpg -------------------------------------------------------------------------------- /img/ustc_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/ustc_client.png -------------------------------------------------------------------------------- /img/zzu_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/img/zzu_client.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/index.html -------------------------------------------------------------------------------- /js/codeboy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/js/codeboy.js -------------------------------------------------------------------------------- /js/codeboy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/js/codeboy.min.js -------------------------------------------------------------------------------- /js/jquery.tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/js/jquery.tagcloud.js -------------------------------------------------------------------------------- /open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/open.html -------------------------------------------------------------------------------- /search/cb-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/search/cb-search.json -------------------------------------------------------------------------------- /search/css/cb-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/search/css/cb-search.css -------------------------------------------------------------------------------- /search/img/cb-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/search/img/cb-close.png -------------------------------------------------------------------------------- /search/img/cb-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/search/img/cb-search.png -------------------------------------------------------------------------------- /search/js/bootstrap3-typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/search/js/bootstrap3-typeahead.min.js -------------------------------------------------------------------------------- /search/js/cb-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/search/js/cb-search.js -------------------------------------------------------------------------------- /tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/tags.html -------------------------------------------------------------------------------- /wechat/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/wechat/create.sh -------------------------------------------------------------------------------- /wechat/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevelop/CodeboyBlog/HEAD/wechat/template --------------------------------------------------------------------------------