const path = require("path"); const resolve = function(dir) { return path.join(__dirname, dir); }; module.exports = { publicPath: "./", outputDir: "di ...
分类:
Web程序 时间:
2020-02-03 11:34:43
阅读次数:
123
``` #pragma warning(disable:4996) #include #include #include #define HDC_EDIT_1 0x100 #define HDC_BUTTON_1 0x101 #define HDC_BUTTON_2 0x102 //全局变量声明 H... ...
基本概念 __数据库(database)__ 保存有组织的数据的容器(通常是一个文件或一组文件)。类似于文件柜。 __表(table)__ 某种特定类型数据的结构化清单。类似于文件。 __模式(schema)__ 关于数据库和表的布局及特性的信息。 __列(column)__ 表中的一个字段。所有表 ...
分类:
数据库 时间:
2020-02-02 01:47:49
阅读次数:
94
配置ssh 允许本机远程连接: 系统偏好设置->共享->点击选中 远程登录 【否则报错:ssh: connect to host localhost port 22: Connection refused】 允许免密ssh ssh-keygen -t rsa【一直回车到底】 cat ~/.ssh/i ...
分类:
系统相关 时间:
2020-02-01 19:46:42
阅读次数:
209
1)升级出问题,ssh登录系统显示 -bash: warning: setlocale: LC_CTYPE: cannot change locale (zh_CN.UTF-8): No such file or directory -bash: warning: setlocale: LC_COL ...
分类:
系统相关 时间:
2020-02-01 00:25:24
阅读次数:
109
如何主动产生warning错误: import warnings def fxn(): warnings.warn("deprecated", DeprecationWarning) with warnings.catch_warnings(): warnings.simplefilter("ign ...
分类:
编程语言 时间:
2020-01-31 13:53:27
阅读次数:
597
https://www.cnblogs.com/ivictor/p/5311607.html 该阻止会一直生效,直到采取以下操作: 1. mysql> flush hosts; 2. # mysqladmin flush-hosts 3. truncate table performance_sch ...
分类:
数据库 时间:
2020-01-30 20:55:08
阅读次数:
95
在Preferences中如下设置,即可解除报红错误: 将Autowiring for Bean Class的Severity级别设置为Warning ...
分类:
其他好文 时间:
2020-01-29 10:26:11
阅读次数:
59
更新pip为20后不显示下载链接无法离线下载回退pip版本 先看log WARNING: You are using pip version 19.3.1; however, version 20.0.2 is available. You should consider upgrading via... ...
分类:
其他好文 时间:
2020-01-28 14:17:17
阅读次数:
174
实验环境: MYSQL 5.7.22 开启二进志日志 日志格式MIXED 实验过程: 1、执行:FLUSH LOGS; master-bin.000014 文件就是新生成的文件 刷新日志是为了实验内容更直观,更容易观察到整个实验过程的内容。 我看到网上许多文章有在用REST MASTER;而未说明此 ...
分类:
数据库 时间:
2020-01-28 09:28:53
阅读次数:
109