两个目录的区别: 工程目录是指包含manage.py文件的目录 配置目录是批包含settings.py文件的目录 在配置目录中找到并打工settings.py文件,做以下配置: 01 DEBUG DEBUG=True:用于开发环境 DEBUG=False:用于生产环境 02 ALLOWED_HOST ...
分类:
其他好文 时间:
2020-02-26 17:14:57
阅读次数:
75
采用以下简单的源代码(将其命名为test.cpp): #include <windows.h> void main() { DebugBreak(); } 使用以下命令编译并链接: cl /MD /c test.cpp link /debug test.obj 如果TEST.EXE现在运行(在64位 ...
分类:
其他好文 时间:
2020-02-26 14:00:37
阅读次数:
79
import timefrom PIL import ImageGrabimport numpy as npimport cv2 beg = time.time()debug = False# img = ImageGrab.grab(bbox=(250, 161, 1141, 610))img = ...
分类:
其他好文 时间:
2020-02-26 01:25:09
阅读次数:
92
1 // Definition for a binary tree node. 2 // #[derive(Debug, PartialEq, Eq)] 3 // pub struct TreeNode { 4 // pub val: i32, 5 // pub left: Option<Rc<Re ...
分类:
其他好文 时间:
2020-02-26 01:06:15
阅读次数:
100
情景: 开发了一个http模块,挂在conten-phase阶段, static char * ngx_http_ivms(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) { ngx_http_core_loc_conf_t *clcf; clcf = ...
分类:
Web程序 时间:
2020-02-25 19:37:26
阅读次数:
99
Django2.2 报错信息无法正常在页面显示 Django2.2 安装后,使用runserver进行开发,出错时错误信息只显示于控制台命令行,而在前端页面只显示一行 A server error occurred. Please contact the administrator. 排错很不方便, ...
分类:
其他好文 时间:
2020-02-25 18:28:23
阅读次数:
67
记录一下入手Flutter后实际开发中踩过的一些坑,这些坑希望后来者踩的越少越好。本文章默认读者已经掌握Flutter初步开发基础。 坑1问题:在debug模式下,App启动第一个页面会很慢,甚至是黑屏。解决:请切换到release模式,或者使用flutter build apk 打出来的relea ...
分类:
其他好文 时间:
2020-02-25 17:39:07
阅读次数:
100
公众号登录地址:https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index 微信接口调试地址:https://mp.weixin.qq.com/debug/cgi-bin/apiinfo 公众号 ...
分类:
微信 时间:
2020-02-25 14:36:54
阅读次数:
146
运维redis很久了,一直是口头给rd说各种要求,尝试把这些规范总结成文档强制:所有的key设置过期时间(最长可设置过期时间10天,如有特殊要求,联系dba说明原因 )强制:禁止在测试环境,本地办公环境,开发跳板机,连接线上redis实例(实例归业务自运维的 除外)强制:禁止使用运维类的命令 key... ...
分类:
其他好文 时间:
2020-02-25 13:03:28
阅读次数:
75
原链接:https://blog.csdn.net/qianjintianguo/article/details/712590?utm_source=blogxgwz6 文件分配表(FAT)是文件管理系统用来给每个文件分配磁盘物理空间的表格,它告诉操作系统,文件存放在磁盘的什么地方。1.FAT表的大 ...
分类:
其他好文 时间:
2020-02-25 00:27:59
阅读次数:
205