1.安装python sudo yum install -y curl policycoreutils-pythonopenssh-server 2.将SSH服务设置成开机自启动,分别执行以下命令: sudo systemctl enable sshd sudo systemctl start ss ...
分类:
系统相关 时间:
2021-07-01 17:07:32
阅读次数:
0
vue3.0子组件 emit 出现警告 Extraneous non-emits event listeners (okUploadImg) were passed to component but could not be automatically inherited because compo ...
分类:
其他好文 时间:
2021-07-01 17:06:29
阅读次数:
0
XCTF练习题 MISC intoU flag:RCTF{bmp_file_in_wav} 解题步骤: 1、观察题目,下载附件 2、解压以后是一个音频文件,听一听,挺嗨的,一边听一边想到音频分析,上Audacity解决问题 3、按照习惯和规律,查看该音频文件的频谱图,操作步骤如下 4、从头到尾没有发 ...
分类:
其他好文 时间:
2021-07-01 17:05:55
阅读次数:
0
类型转换 由于Java是强制类型语言,所以要进行有些运算的时候,需要用到类型转换。 由低到高: byte,short,char—> int —> long—> float —> double 不能对boolean类型进行类型转换。 不能把对象类型转换成不相关类的对象。 在把容量大的类型转换为容量小的 ...
分类:
编程语言 时间:
2021-07-01 17:03:47
阅读次数:
0
osmdroid's MapView is basically a replacement for Google's MapView class. First of all, create your Android project, and follow HowToMaven if you're u ...
分类:
移动开发 时间:
2021-07-01 16:54:55
阅读次数:
0
#[derive(Debug, Clone)] struct Work { //消息实体,存储消息 id: i32 } struct WorkMaster { //消息管理者属性 workers: Vec<Box<Worker>> //存储注册的接收者。每个接收者须实现Worker接口才能注册进。 ...
分类:
数据库 时间:
2021-07-01 16:45:32
阅读次数:
0
线程共包括以下 5 种状态: 1. 新建状态(New): 线程对象被创建后,就进入了新建状态。例如,Thread thread = new Thread()。 2. 就绪状态(Runnable): 也被称为“可执行状态”。线程对象被创建后,其它线程调用了该对象的start()方法,从而来启动该线程。 ...
分类:
编程语言 时间:
2021-07-01 16:42:38
阅读次数:
0
1.show databases 展示所有数据库 2.建表 column : 列名 PK:唯一主键 NN:不能为空 AI:自动增加 3.修改删除表 4.使用库 5.屏蔽 -- 加空格 切近加空格 6.插入指定的表数据 常用的增删改查 和 模糊搜索 排序 对应下面demo即可 -- show tabl ...
分类:
数据库 时间:
2021-07-01 16:40:54
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0
1、字符串转十六进制 代码实现: void StrToHex(char *pbDest, char *pbSrc, int nLen){ char h1,h2; char s1,s2; int i; for (i=0; i<nLen/2; i++) { h1 = pbSrc[2*i]; h2 = p ...
分类:
编程语言 时间:
2021-07-01 16:28:54
阅读次数:
0