html5提供的新语义元素 header:定义简介形式的内容 nav:定义页面主导航功能 main:定义主内容,主内容中可以有各种子内容区段。 article:定义独立的文章内容,与页面其他部分无关 section:定义文档中的节,与article类似,但section更适用于组织页面使其按功能分块 ...
分类:
Web程序 时间:
2021-02-17 14:22:32
阅读次数:
0
Markdown # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 ### Duplicate Header ### Duplicate Header H1 H2 H3 H4 H5 H6 Duplicate Header Duplicate Header Pa ...
分类:
其他好文 时间:
2021-02-17 14:15:02
阅读次数:
0
1、背景: 启动MariaDB服务,通过python远程访问数据库失败,查询MariaDB日志(systemctl status mariadb)报错信息为: user: 'unauthenticated' host: '192.168.1.8' (This connection closed no ...
分类:
数据库 时间:
2021-02-17 14:04:16
阅读次数:
0
对应手册:点击查看 在当前模版文件中包含其他的模版文件使用include标签 比如网站会创建一个公共使用的头部和公共使用的底部 模板引入如下: <include file="Public/header" /> // 引入头部header <include file="Public/footer" / ...
分类:
Web程序 时间:
2021-02-16 12:46:50
阅读次数:
0
hashMap的四种遍历方式 使用entrySet返回包含entry的Set集合再遍历 Map<String,String> map=new HashMap<>(); map.put("1","stu01"); map.put("2","stu02"); Set<Entry<String,Strin ...
分类:
其他好文 时间:
2021-02-16 12:33:39
阅读次数:
0
The connection to the server 192.168.1.11:6443 was refused - did you specify the right host or port? 怀疑是不是kubelet挂了,检查 [root@master1 prometheus]# syst ...
分类:
移动开发 时间:
2021-02-16 12:26:05
阅读次数:
0
需要引入geopy库 pip install geopy 安装即可 import requests from bs4 import BeautifulSoup import pandas as pd import json import os from tqdm import tqdm from c ...
分类:
编程语言 时间:
2021-02-15 12:35:11
阅读次数:
0
从命令提示窗口中选择MySQL数据库 语法:USE 数据库名; 使用PHP脚本选择MySQL数据库 语法:mysqli_select_db(connection,dbname); 规定要使用的MySQL连接(必须) 规定要使用的默认数据库(必须) 举个例子 <?php header("content ...
分类:
数据库 时间:
2021-02-15 12:19:21
阅读次数:
0
出现原因 finalshell意外终止,导致ssh连接意外终止 之后怎么都连不上虚拟机的ssh,一看是虚拟机的ssh已经被意外暂停,可能是跟finalshell的意外终止有关 解决 chmod 600 /etc/ssh/ssh_host_rsa_key chmod 600 /etc/ssh/ssh_ ...
分类:
其他好文 时间:
2021-02-15 12:17:03
阅读次数:
0
使用mysql二进制方式连接 mysql -u root -p 使用PHP脚本连接MySQL mysqli_connect(host,name,password,dbname,port,socket); host 规定主机或IP地址 username 规定MySQL用户名 password 规定My ...
分类:
数据库 时间:
2021-02-15 12:08:49
阅读次数:
0