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

Linux Shell

解决win10中sublime text 3 - 输入框不跟随

IMESupport 插件已经3年没有更新了,所以在win10中失效了,有大佬发布了修改版本,但是不能通过package_control 安装,但是安装也挺简单的

直接将该项目克隆或是下载到 Sublime_Text_3_Install_Path/Data/Packages 目录下。

我们的2017

https://statics.lshell.com/2017to2018.jpg

2018已过半,才有心来总结一下2017,这是我们走过的第一个年头,有磕磕碰碰,也有欢欢喜喜

工作

今年公司的几个项目的接连失败,导致几个程序大牛的离职,我依旧坚守岗位,2月份招进来的同事基础很好,公司盈利项目都交给他在管理了,我主攻新项目,希望18年公司的项目能成功吧,最近年头不好,也不知道这种模式是否能成功,过年还分了老项目的奖金,有点过意不去

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