https://www.gravatar.com/avatar/5f48da38e786436afece6f2e46196202?s=240&d=mp

Linux Shell

http 常见状态码解释

一般最常见的是 200、403、404、500,作为运维一般了解4开头和5开头的就好了

https://statics.lshell.com/status_codes.png

一图胜千言

1开头
1xx(临时响应)表示临时响应并需要请求者继续执行操作的状态代码。代码 说明

Turn off pylint warnings in the VSCode

I want to turn off pylint warnings in the vscode, someone tell me use ~/.pylintrc, but i found a better way to fix it.

 ENV
   VS Code version: 1.18.1
   Python version: 2.7.14

To do:
 Go to File > Preferences > Settings. Add the following to your user settings, add this code:

"python.linting.pylintArgs": [  
        "--disable=R,C"  
    ]  

```thank guys in this link : https://github.com/DonJayamanne/pythonVSCode/issues/570

迟到的 2016

//statics.lshell.com/marry.png

we are getting married!

原谅我到16年年底的时候懒癌犯了,当时实在是懒得写,后面又忙着人生大事,就更没时间写了,一直拖到了今天.

## 爱情 苦苦等待的我终于在16年 遇到了生命中的那个她,  初识便如鱼水般和谐,和她在一起无论什么事情都是那么自然, 简单却不平凡的生活. 从牵上她的手开始就注定要和她白头.

shell 模拟多线程脚本

其实在 shell 脚本中差没有多线程这个概念,此脚本结合管道文件和文件描述符巧妙的实现了多线程的功能。阅读本文前请先查阅管道文件和文件描述符相关的基础知识。