src & target src: source code, target: compiled. (Most IMPORTANT PARTS of a PROJECT) The Bone : project | | | src | | | | main | | | java | | | resour ...
分类:
其他好文 时间:
2020-06-19 23:02:55
阅读次数:
63
错误示范: 解决方法: 在 <!doctype html> 下加入下面这个标签: <!--suppress ALL--> 修改之后: ...
分类:
其他好文 时间:
2020-06-19 22:42:48
阅读次数:
96
客户端命令: status # 查看客户端状态 help # 查看所有客户端可执行命令 服务器端命令: 1、查看版本 select version(); 2、创建用户并授权 create user "root"@"%" identified by "mageedu.com"; GRANT ALL P ...
分类:
数据库 时间:
2020-06-19 22:39:38
阅读次数:
70
Token Authentication vs. Cookies What is the difference between token authentication and authentication using cookies? I am trying to implement the Em ...
分类:
其他好文 时间:
2020-06-19 20:57:52
阅读次数:
62
4.1.1 select语句一、select 查询语句 1.select [all | distinct] * | 列名1[,列名2,.........,列名n] from 表名 [where 条件表达式] [group by 列名 [asc | desc ] [having 条件表达式]] [or ...
分类:
其他好文 时间:
2020-06-19 20:54:38
阅读次数:
58
很奇怪今天MySQL8突然出现一些莫明的错误,比如我昨天在用的帐户,今天操作时报如下错误: 1227 - Access denied; you need (at least one of) the SYSTEM_USER privilege(s) for this operation 具有root权 ...
分类:
数据库 时间:
2020-06-19 20:40:03
阅读次数:
133
rm /etc/apt/sources.list.d/pve-enterprise.list export LC_ALL=en_US.UTF-8 apt update && apt -y install git && git clone https://github.com/ivanhao/pvet ...
分类:
其他好文 时间:
2020-06-19 20:32:27
阅读次数:
46
Networking overview One of the reasons Docker containers and services are so powerful is that you can connect them together, or connect them to non-Do ...
分类:
Web程序 时间:
2020-06-19 16:24:16
阅读次数:
70
抽象工厂模式 定义:抽象工厂模式提供了一个创建一系列类相关或相互依赖对象的接口,无需指定他们具体的类 使用场景: 客户端(应用层)不依赖于产品类实例如何被创建、实现等细节 强调一系列相关的产品对象(属于同一产品族)一起创建对象需要大量的重乎代码 提供一个产品类的库。所有的产品以同样的接口出现,从而是 ...
分类:
其他好文 时间:
2020-06-19 16:22:50
阅读次数:
57
1、定义 compile(pattern, flags=0) ** 正则匹配规则: \w*o\w* \w* 表示匹配由大小写英文字bai母数字和下划线组成的0个或多个du字符o 表示匹zhi配字符o\w*o\w* 表示匹配含有o的字dao符串(不管o在首字母还是在尾字母还是在中间) 2、与finda ...
分类:
其他好文 时间:
2020-06-19 15:39:23
阅读次数:
40