摘要:
package control ctrl+`` ctrl+shift+p pa 搜索 Open the command paletteWin/Linux: ctrl+shift+p, Mac: cmd+shift+p Type Install Package Control, press enter 阅读全文
摘要:
# -*- coding: utf-8 -*- from multiprocessing import cpu_count bind = ["127.0.0.1:9000"] # 线上环境不会开启在公网 IP 下,一般使用内网 IP daemon = True # 是否开启守护进程模式 pidfil 阅读全文
摘要:
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0;font-size:16px;color:#3e3e3e;line-height:1.6;word-sp 阅读全文
摘要:
1 ansible-doc -s user 2 64 ansible ali -m user -a "name=cls uid=2000 home=/opt/cls shell=/sbin/nologin groups=root" 3 65 ansible ali -m user -a "name= 阅读全文
摘要:
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>登录</title> 6 <style> 7 .login { 8 width: 300px; 9 height: 300px; 10 bo 阅读全文
摘要:
1 ps aux |grep 18816 2 kill -9 18816 3 date 4 cd /tmp 5 ls 6 find -name test.log 7 find ./ -name test.log 8 cat test.log 9 ping 192.168.31.218 10 ping 阅读全文
摘要:
昨日回顾: 1 什么是celery:执行异步任务,和定时任务 -架构 -broker:消息中间人,redis,rabbitmq -worker:执行者(开多个) -backend:结果存储,redis -异步任务: 提交任务到broker中: -函数.delay(参数) -函数.apply_asyn 阅读全文
摘要:
# from threading import Thread # import time # lqz = -1 # def task(arg): # global lqz # lqz = arg # time.sleep(2) # print(lqz) # # for i in range(10): 阅读全文
摘要:
上节回顾: -1 配置 -0 app.debug= -第一种:app.config['DEBUG']=True -第二种: -app.config.from_pyfile('py文件') **** -from_json -from_object:可以传类 ***** -路由: -典型写法:@app. 阅读全文
摘要:
virtualenv --no-sit-packages --python=python3 venv1 阅读全文