简易的命令行入门教程: Git 全局设置: git config global user.name "蔡文君" git config global user.email "1170926392@qq.com" 创建 git 仓库: mkdir information_sharing cd infor ...
分类:
其他好文 时间:
2020-01-03 21:26:20
阅读次数:
76
有时,我们会遇到这样的问题: 在一个树上选定一些点,每个点能覆盖一定范围的点……之类 比如: "CF70E Information Reform" "P4845 LJJ爱数树" "P3267 [JLOI2016/SHOI2016]侦察守卫" 通常,我们有两种做法: 方法一:我们对于每个点,考虑距离它 ...
分类:
其他好文 时间:
2020-01-03 20:59:45
阅读次数:
72
When running a Java program, verbose options can be used to tell the JVM which kind of information to see. JVM suports three verbose options out of th ...
分类:
编程语言 时间:
2020-01-03 12:02:28
阅读次数:
72
Web服务器搭建步骤(Win10) 1.在“开始”菜单处打开“控制面板”。 2点击“程序”。 3.点击“启动或关闭Windows功能”。 4.对“Internet Information Services”下的所有选项打勾?,点击“确定”。 5.电脑会自动搜索文件下载。 6.打开网址“http:// ...
import tensorflow as tf from tensorflow import keras from tensorflow.keras import datasets import os # do not print irrelevant information # os.enviro... ...
分类:
其他好文 时间:
2020-01-02 22:23:24
阅读次数:
111
查看数据表是否有更新时,可以通过查询information_schema数据库中的TABLES表中的有关所有的库表信息数据 information_schema 数据库跟 performance_schema 一样,都是 MySQL 自带的信息数据库。其中 performance_schema 用于 ...
分类:
数据库 时间:
2020-01-02 22:21:58
阅读次数:
101
计算机字符编码编年史 标签(空格分隔): Java基础 话说字符编码 各种各样的编码标准搞得头大,哪哪分不清。so,想按照字符编码出现的时间顺序做一个梳理。 1.ASCII ASCII,American Standard Code for Information Interchange,美国信息交换 ...
分类:
其他好文 时间:
2020-01-02 19:05:34
阅读次数:
77
DG参数 LOG_ARCHIVE_DEST_n This chapter provides reference information for the attributes of the LOG_ARCHIVE_DEST_n initialization parameter. The followi ...
分类:
其他好文 时间:
2020-01-01 23:32:20
阅读次数:
60
1. 获取所有表结构(TABLES) SELECT * FROM information_schema.TABLES WHERE TABLE_SCHEMA='数据库名'; TABLES表:提供了关于数据库中的表的信息(包括视图)。详细表述了某个表属于哪个schema,表类型,表引擎,创建时间等信息。 ...
分类:
数据库 时间:
2019-12-31 14:36:40
阅读次数:
160
1. 获取所有数据库信息(SCHEMATA) show databases; 查看用户下所有数据库信息;SCHEMATA表:提供了关于数据库中的库的信息。详细表述了某个库的名称,默认编码,排序规则。各字段说明如下: 字段 含义 schema_name 数据库名称 default_character_ ...
分类:
数据库 时间:
2019-12-31 14:03:55
阅读次数:
299