1. ByteBuf of Netty

    ByteBuf简介

    2019/02/10 Netty

  2. RFC相关协议整理

    1996年 - RFC 1945 - Hypertext Transfer Protocol – HTTP/1.0 1997年 - RFC 2068 - Hypertext Transfer Protocol – HTTP/1.1 已废弃,当前版本协议参考 RFC2616( —— RFC2616文档中已标注 RFC2068 为 Obsoletes) Obsoleted by: RFC 2616 1997年 - RFC 2145 - Use and Interpretation of HTTP Version Numbers Obsoleted by: RFC 7230 1999年 - RFC 2616 - Hypertext Transfer Protocol – HTTP/1.1 176 pages,当前HTTP协议版本HTTP/1.1的官方规范( —— HTTP权威指南) Obsoletes: RFC 2068 Obsoleted by: RFC 7230, RFC 7231, RFC 7232, RFC 7233, RFC 7234, RFC 7235 Updated by: RFC 2817, RFC 5785, RFC 6266, RFC 6585 1999年 - RFC 2617 - HTTP Authentication: Basic and Digest Access Authentication Obsoletes: RFC 2069 Obsoleted by: RFC 7235, RFC 7615, RFC 7616, RFC 7617 2000年 - RFC 2817 - Upgrading to TLS Within HTTP/1.1 Updates: RFC 2616 Updated by: RFC 7230, RFC 7231 2000年 - RFC 2818 - HTTP Over TLS Updated by: RFC 5785, RFC 7230 2010年 - RFC 5785 - Defining Well-Known Uniform Resource Identifiers (URIs) Updates: RFC 2616, RFC 2818 2011年 - RFC 6266 - Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol (HTTP) Updates: RFC 2616 2012年 - RFC 6585 - This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations. Updates: RFC 2616 2014年 - RFC 7230 - Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing Obsoletes: RFC 2145, RFC 2616 Updates: RFC 2817, RFC 2818 2014年 - RFC 7231 - Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content Obsoletes: RFC 2616 Updates: RFC 2817 2014年 - RFC 7232 - Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests Obsoletes: RFC 2616 2014年 - RFC 7233 - Hypertext Transfer Protocol (HTTP/1.1): Range Requests Obsoletes: RFC 2616 2014年 - RFC 7234 - Hypertext Transfer Protocol (HTTP/1.1): Caching Obsoletes: RFC 2616 2014年 - RFC 7235 - Hypertext Transfer Protocol (HTTP/1.1): Authentication Obsoletes: RFC 2616, RFC 2617 2015年 - RFC 7540 - Hypertext Transfer Protocol Version 2 (HTTP/2) 2015年 - RFC 7615 - HTTP Authentication-Info and Proxy-Authentication-Info Response Header Fields Obsoletes: RFC 2617 2015年 - RFC 7616 - HTTP Digest Access Authentication Obsoletes: RFC 2617 2015年 - RFC 7617 - The ‘Basic’ HTTP Authentication Scheme Obsoletes: RFC 2617

    2019/02/09 网络

  3. mongodb数据库基本操作

    登录

    2019/01/22 mongodb

  4. 在同一个电脑上配置多个GitHub账号

    最近在使用github的时候,有这样的一个需求,就是一台电脑上登录两个github账号,并上传项目和更新自己的代码,大家都知道需要给该账号添加一个SSH key才能访问,参考: 具体设置 。当然如果你在多台机器使用一个账户,你可以为该账户添加多个SSH key。由于github是使用SSH key的fingerprint来判定你是哪个账户,而不是通过用户名,这样你就可以在设置完之后,在本地直接执行下面的语句,它就会自动使用你的.ssh/id_rsa.pub所对应的账户进行登陆,然后执行相关命令。

    2019/01/15 Git

  5. 树莓派系统安装和配置

    系统安装

    2019/01/07 Linux

  6. Spring Cloud 学习

    微服务

    2019/01/07 Microservice

  7. docker的资源管理

    资源占用情况查看

    2019/01/04 Docker

  8. 使用Docker在本地部署MySQL

    搜索镜像 docker search msyql

    2019/01/02 Docker

  9. macOS 压缩和解压缩

    tar

    2018/12/21 macOS

  10. 如何编写 Git commit 信息

    规范Git commit 内容格式: <type>(<scope>): <subject> // 空一行 <body> // 空一行 <footer>

    2018/12/13 Git