css属性 <style> div{ border: 1px solid red; width: 100px; } .div1{ width: 100px; height: 100px; /*外边距*/ /* margin: 50px; */ } .div2{ width: 200px; heigh ...
分类:
Web程序 时间:
2020-07-10 00:42:13
阅读次数:
81
css属性 <style> p{ color: #FF0000; font-size: 30px; text-align: center; line-height: 200px; /* border 边框 */ border: 1px solid red; } div{ border: 1px so ...
分类:
Web程序 时间:
2020-07-10 00:35:28
阅读次数:
90
基础选择器 <style> .cls1{ color: blue; } div{ color:green; } #div1{ color: red; } </style> 基础选择器 id选择器:选择具体的id属性值的元素.建议在一个html页面中id值唯一 语法:#id属性值 元素选择器:选择具有 ...
分类:
Web程序 时间:
2020-07-10 00:13:34
阅读次数:
915
扩展选择器 <style> div p{ color:red; } div > p { border: 1px solid; } input[type='text']{ border: 5px solid; } a:link{ color: pink; } a:hover{ color: green ...
分类:
Web程序 时间:
2020-07-10 00:10:29
阅读次数:
67
package com.sjw.flink import org.apache.flink.streaming.api.scala._import org.apache.flink.streaming.api.windowing.time.Time object WindowTest { def m ...
分类:
其他好文 时间:
2020-07-09 23:59:55
阅读次数:
253
Like this: package com.seliote.smsbomber.service.impl; import com.seliote.smsbomber.pojo.soo.captcha.CaptchaSoo; import com.seliote.smsbomber.service. ...
分类:
其他好文 时间:
2020-07-09 22:40:12
阅读次数:
76
本文介绍使用开源的repmgr组件配置PostgreSQL12的replication以及failover。1、环境信息2、安装PG软件包所有节点安装PostgreSQL12以及repmgr软件包。[root@hwd04~]#dnf-yinstallhttps://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-red
分类:
数据库 时间:
2020-07-09 17:58:16
阅读次数:
75
1概述作者终于把Capslock+更新到了3.x版本了,所以就更了这篇博客。2.x版本的可以戳这里。Linux版本的可以戳这里。3.x版本与2.x版本的主要不同是更新了新的键盘布局,更加顺手,下面让我们一起来看一下吧。2基础功能下面的按键都以Capslock+开头,也就是说需要先按着Capslock键,而Alt键无特殊说明指的是左边的Alt键。2.1光标移动按键效果E光标向上移动一次Alt+E光标
分类:
其他好文 时间:
2020-07-09 17:50:37
阅读次数:
88
1.通过端口查看进进程 1.linux查看命令 方法1: [root@artifactory-no ~]# netstat -nap |grep 8082 #这里的8082就是我们要查看端口号,11901就是占有这个端口号的进程号 tcp6 0 0 :::8082 :::* LISTEN 11901 ...
分类:
系统相关 时间:
2020-07-09 15:29:25
阅读次数:
104
启动远程服务 pip install --ignore-installed --upgrade tensorflow==1.10 pip install bert-serving-server pip install bert-serving-client #下载模型 mkdir model cd ...
分类:
其他好文 时间:
2020-07-09 15:21:36
阅读次数:
138