at if not, Start Atd Service systemctl status atd.service //output: ┌─[root@nedrain]─[~] └──? $systemctl status atd.service ● atd.service - Job spooli ...
分类:
系统相关 时间:
2020-06-19 13:45:08
阅读次数:
66
聊聊iOS开发中的JSBridge https://www.jianshu.com/p/eff176e220e0 https://www.jianshu.com/p/0026be142442 iOS 上使用jsBridge的方法 <!DOCTYPE html> <html lang="en"> <h ...
分类:
移动开发 时间:
2020-06-19 12:28:07
阅读次数:
147
(1) Nysql创建表的语句(创建数据库,显示数据库,显示数据表,删除数据库/数据表,显示表的结构) l 创建数据库 create database student l 删除数据库 drop database student l 创建数据表 create table admin(....) l 删 ...
分类:
数据库 时间:
2020-06-19 12:02:51
阅读次数:
80
centos7中安装zabbix 1、关闭防火墙 # systemctl stop firewalld # setenforce 0 同步时间 # ntpdate pool.ntp.org 2、安装Apache、php、mariadb # yum -y install httpd mariadb m ...
分类:
其他好文 时间:
2020-06-19 00:35:29
阅读次数:
86
一、技术总结 学会使用unordered_map,可以减少存储空间,同时如果是两个id号之间有关系,可以直接让他们拼接起来。使用map<int, bool>来表示他们直接是否有关系; 学会使用stoi函数,能够将字符串直接转化为默认是十进制的数字。 最后就是读懂题目,如果A喜欢B,则需要寻找与A同性 ...
分类:
其他好文 时间:
2020-06-18 22:01:33
阅读次数:
58
Conn_IP = ""Conn_UserName = ""Conn_PassWord = ""Conn_database = ""conn = MySQLdb.connect(Conn_IP,Conn_UserName,Conn_PassWord,Conn_database)cursor = co ...
分类:
数据库 时间:
2020-06-18 19:18:04
阅读次数:
48
1、mysql workbench 菜单file=>add model(添加模型) 点击上面的add diagram(添加新的图解),就会在右边多出一个新的图解模型 2,mysql workbench 菜单database=>reverse engineer mysql workbench 连接数据 ...
分类:
数据库 时间:
2020-06-18 11:10:05
阅读次数:
83
题目描述 我们从二叉树的根节点 root 开始进行深度优先搜索。 在遍历中的每个节点处,我们输出 D 条短划线(其中 D 是该节点的深度),然后输出该节点的值。(如果节点的深度为 D,则其直接子节点的深度为 D + 1。根节点的深度为 0)。 如果节点只有一个子节点,那么保证该子节点为左子节点。 给 ...
分类:
其他好文 时间:
2020-06-18 10:29:35
阅读次数:
52
string str ="11- 3 [1,2,3,4] Q ERTY$ %^ 23"; 取第一个字符(“1”) var first = str.Substring(0, 1); 取最后一个字符(“3”) var last = str.Substring(str.Length - i,1); 取特定 ...
步骤 本文使用Mybatis,如果你不会,那就照猫画虎吧 1、搭建数据库 CREATE DATABASE `iot`; USE `iot`; DROP TABLE IF EXISTS `messages`; CREATE TABLE `messages` ( `id` INT(10) NOT NUL ...
分类:
数据库 时间:
2020-06-18 09:14:58
阅读次数:
154