{{ page.title }}
9 |11 |
├── .gitignore ├── 404.html ├── LICENSE ├── README.md ├── README_zh_CN.md ├── _config.yml ├── _includes ├── footer.html ├── head.html └── header.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts ├── 2012-09-17-why-complement.md ├── 2013-09-26-java-io.md ├── 2013-10-19-java-nio.md ├── 2013-11-26-effective-java.md ├── 2014-01-02-linux-print.md ├── 2014-01-05-vim.md ├── 2014-01-25-linux-filecmd.md ├── 2014-02-08-linux-power.md ├── 2014-02-13-linux-ps.md ├── 2014-02-20-linux-boot.md ├── 2014-02-23-ip.md ├── 2014-03-13-resubmit.md ├── 2014-03-15-file-upload.md ├── 2014-03-16-tomcat-https.md ├── 2014-03-22-reentrantlock.md ├── 2014-04-05-encode-decode.md ├── 2014-04-09-algorithm-gist.md ├── 2014-04-20-flex.md ├── 2014-05-07-linux-job.md ├── 2014-05-12-acturl-generic.md ├── 2014-05-18-java-concurrent.md ├── 2014-06-10-ssh.md ├── 2014-06-22-design-pattern.md ├── 2014-07-21-the-scheme-eval.md ├── 2014-08-20-jvm.md ├── 2014-09-19-sort.md ├── 2014-10-09-bitmap.md ├── 2014-10-17-shell-trash.md ├── 2014-12-13-java-newfeature.md ├── 2014-12-21-webservice.md ├── 2015-01-11-linux-make.md ├── 2015-01-22-linux-shell.md ├── 2015-02-06-closure.md ├── 2015-02-11-webtool.md ├── 2015-02-13-sqlappend.md ├── 2015-02-22-javajs.md ├── 2015-03-05-validator.md ├── 2015-03-12-spring-security.md ├── 2015-03-15-FullGc.md ├── 2015-03-26-large-file-diff.md ├── 2015-04-09-rmi.md ├── 2015-05-07-js-summary.md ├── 2015-05-27-mvc-validator.md └── 2015-05-28-large-file-diff-concurrent.md ├── favicon.ico ├── feed.xml ├── index.html ├── pages ├── 1archive.html ├── 2category.html ├── 3tag.html ├── 4about.md └── 5link-external.md ├── sitemap.xml └── static ├── bg.jpg ├── css ├── archive.css ├── article-list.css ├── category.css ├── highlight.css ├── post.css ├── style.css ├── tagCloud.css └── tags.css ├── img ├── JavaScriptMindMap.jpg ├── bg-canvas_bg.jpg ├── bitmap.jpg ├── boundary-A.png ├── boundary-B.png ├── boundary-C.png ├── http-get.png ├── http-post.png ├── i0.jpg ├── icon-picture.svg ├── io-match-2.jpg ├── io-match.jpg ├── ip.jpg ├── java-system.png ├── jvm-arg0.png ├── jvm-arg1.png ├── jvm-gc.png ├── jvm-handle.png ├── jvm-point.png ├── jvm-runtime.png ├── mvc-validator │ ├── adapter.jpg │ ├── driven.jpg │ ├── google.jpg │ ├── hasErrors.jpg │ ├── initBinder.jpg │ ├── notNull.jpg │ └── validator-config.jpg ├── namespace.png ├── rmi.jpg ├── servlet-encode │ ├── body-iso.png │ ├── body-utf.png │ ├── encodeURI.png │ ├── get.png │ ├── param.png │ ├── post.png │ └── world.png ├── shell-trash.png ├── spring-security-filter.png ├── spring-security-filterChain.jpg ├── xml-data-type.jpg └── xml-field-type.jpg ├── js ├── category.js ├── post.js ├── script.js ├── tagCloud.js ├── tags.js └── toc.js └── octicons ├── LICENSE.txt ├── README.md ├── octicons-local.ttf ├── octicons.css ├── octicons.eot ├── octicons.less ├── octicons.svg ├── octicons.ttf ├── octicons.woff └── sprockets-octicons.scss /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .idea 4 | .local 5 | .local/* 6 | .jekyll-cache -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 bit-ranger 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ##[点我查看中文说明/Click here for Chinese instructions](https://github.com/bit-ranger/blog/blob/gh-pages/README_zh_CN.md) 2 | 3 | # Blog Address 4 | 5 |