参考: G:\文档\开发\python\发邮件 https://www.jianshu.com/p/bc057b304a14 # -*- coding: utf-8 -*-from ufile import filemanager, bucketmanagerfrom ufile import co ...
分类:
编程语言 时间:
2020-01-02 22:33:22
阅读次数:
87
[toc] drf 三大认证: 认证: 权限: 认证与权限组件绑定使用: 频率: 多方式登录: ...
分类:
其他好文 时间:
2020-01-02 20:21:27
阅读次数:
381
Git 全局设置 git config --global user.name "YourName" git config --global user.email "YourEmail" 创建 git 仓库 git init touch README.md git add README.md git ...
分类:
其他好文 时间:
2020-01-02 18:22:34
阅读次数:
58
一:基础数据准备 DROP TABLE IF EXISTS `tbl_user`; CREATE TABLE `tbl_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) DEFAULT NULL, `email ...
分类:
数据库 时间:
2020-01-01 12:12:07
阅读次数:
93
一、数据库知识 1. 数据库设计(三范式) 1NF:原子性 字段不可再分,否则就不是关系数据库。 如果有一个地址字段,却要常常查询地址中的城市,就要把地址分为省、市、街道等。 2NF:唯一性 一个表只说明一个事物。 表:学号, 姓名, 年龄, 课程名称, 成绩, 学分。 这个表明显说明了两个事务:学 ...
分类:
数据库 时间:
2019-12-30 17:16:38
阅读次数:
95
# -*- coding: utf-8 -*- __author__ = 'YongCong Wu' # @Time : 2019/12/30 12:45 # @Email : : 1922878025@qq.com class Pagenation(object): def __init__(se... ...
分类:
移动开发 时间:
2019-12-30 13:00:06
阅读次数:
106
Project 3Non-overlapping Community Detection in Large NetworksDue: 2019-12-10In this project, you are going to detect / reveal significant communities ...
分类:
编程语言 时间:
2019-12-28 21:09:28
阅读次数:
116
团队同事接到用户报修,说他的Outlook邮箱中只能显示近一年的邮件内容,而事实上他在这家公司工作了近5年。我们该如何解决用户需要显示更长时间或所有邮箱的问题呢?
分类:
其他好文 时间:
2019-12-28 19:04:10
阅读次数:
3141
Project – Online Grading SystemThis is the description of the task for the main project for CS108. The project is to implement an onlinegrading system ...
分类:
其他好文 时间:
2019-12-28 19:03:19
阅读次数:
76
一、初始化 git init 二、签名 A、用户名和邮箱,用于识别用户 B、命令 1. 项目级别/仓库级别,优先级高 git config user.name xxx git config user.email xxx 2. 系统用户级别 git config --global user.name ...
分类:
其他好文 时间:
2019-12-27 19:38:03
阅读次数:
78