├── .gitignore ├── CNAME ├── README.md ├── _config.yml ├── _includes ├── custom │ └── comment.html ├── footer.html ├── head.html ├── header.html ├── icon-github.html ├── icon-github.svg ├── icon-twitter.html └── icon-twitter.svg ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts ├── 2015-12-28-javascript-protytype.md ├── 2015-12-29-javascript-this.md ├── 2015-12-30-javascript-clouse.md ├── 2016-01-01-javascript-object-create.md └── 2016-03-01-javascript-cross-domain.md ├── _sass ├── _base.scss ├── _layout.scss └── _syntax-highlighting.scss ├── about.md ├── api └── list.json ├── css └── main.scss ├── feed.xml ├── index.html ├── spider ├── index.js └── package.json └── wechatApp ├── app.js ├── app.json ├── app.wxss ├── pages ├── index │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss └── main │ ├── main.js │ ├── main.wxml │ └── main.wxss └── utils └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | blog.rccoder.net 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rccoder's blog 2 | 3 | * **链接:** [blog.rccoder.net](http://blog.rccoder.net) 4 | 5 | *其实你直接访问 [Issues](https://github.com/rccoder/blog/issues) 更加方便* 6 | 7 | * **主题:**: Technology and Life 8 | * **幼稚的老博客:** [life.rccoder.net](http://life.rccoder.net) 9 | 10 | ## 订阅点赞 11 | 12 | * 关注订阅请 **watch** 13 | * 点赞点赞请 **star** 14 | 15 | ## 版权声明 16 | 17 | * 请尊重辛勤劳动 18 | * 禁止不署名完全转载,可单独通过下面的捐赠付版权费 19 | * 建议署名并进行摘要性质转载 20 | 21 | ## 捐赠 22 | 23 | 写文不易,赠我一杯咖啡增强一下感情可好? 24 | 25 |  26 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Welcome to Jekyll! 2 | # 3 | # This config file is meant for settings that affect your whole blog, values 4 | # which you are expected to set up once and rarely need to edit after that. 5 | # For technical reasons, this file is *NOT* reloaded automatically when you use 6 | # 'jekyll serve'. If you change this file, please restart the server process. 7 | 8 | # Site settings 9 | title: Rccoder 10 | email: rccoder.net@gmail.com 11 | description: > # this means to ignore newlines until "baseurl:" 12 | 在对的时间做正确的事。欢迎你订阅本[博客](https://github.com/rccoder/blog):Watch + Star 13 | baseurl: "" # the subpath of your site, e.g. /blog 14 | url: "http://blog.rccoder.net" # the base hostname & protocol for your site 15 | weibo_username: rccoder 16 | github_username: rccoder 17 | 18 | # Build settings 19 | markdown: kramdown 20 | kramdown: 21 | input: GFM 22 | 23 | user: rccoder 24 | repo: blog -------------------------------------------------------------------------------- /_includes/custom/comment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 |
12 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 39 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |subscribe via RSS
22 | 23 |