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

Linux Shell

http 常见状态码解释

一般最常见的是 200、403、404、500,作为运维一般了解4开头和5开头的就好了 一图胜千言 1开头 1xx(临时响应)表示临时响应并需要请求

我与 B3log 不得不说的故事

初识 Solo 似在 2011 年 3 月,蓦然回首已是近 7 年 青春年少,初入社会,热衷博客,自GAE伊始,于机缘巧合之下识得 B3log Solo,奈何深陷micolog,不能

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: 1 2 3 4 5 "python.linting.pylintArgs": [ "--disable=R,C" ] ```thank guys in this link : https://github.com/DonJayamanne/pythonVSCode/issues/570

迟到的 2016

we are getting married! 原谅我到16年年底的时候懒癌犯了,当时实在是懒得写,后面又忙着人生大事,就更没时间写了,一直拖到了今天. ## 爱情 苦苦等待的我终于在16

shell 模拟多线程脚本

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