多层嵌套 [] h->createElement <script type="text/jsx"> export default { name: "demo", render(h) { return h( "el-row", { props: { level: 1, value: this.valu ...
分类:
Web程序 时间:
2020-11-26 14:15:41
阅读次数:
7
一道毒瘤题 \(\gamma\) by DPair 题目描述 维护一个正整数集 \(S\),元素 \(\in\) 值域 \(U\),需要支持: \(\texttt{1 l r}\):\(S\gets S\cup [l,r]\); \(\texttt{2 l r}\):\(S \gets \{x|x\ ...
分类:
其他好文 时间:
2020-11-26 14:13:44
阅读次数:
5
概述在复杂的网络环境中,需要通过抓包来排查网络问题,但是有时候https的包是tls加密,无法看到真实它在做什么,需要对其进行解密。工具tcpdumpwiresharkhttps请求工具浏览器curl设置解密变量exportSSLKEYLOGFILE=~/Downloads/ssl.key测试发送https请求curlhttps://baidu.com<html><head>
分类:
Web程序 时间:
2020-11-25 12:50:13
阅读次数:
14
netsh wlan export profile key=clearnetsh wlan add profile filename="d:\Desktop\JoinDomain\wlan.xml"start-sleep -s 1然后最好将配置文件名称改为与ssid名称一样netsh wlan co ...
分类:
其他好文 时间:
2020-11-24 12:58:58
阅读次数:
11
一、1、概述:官方网站:MySQL官网:https://www.mysql.com/mariadb官网:https://mariadb.com/官方文档:MySQL:https://dev.mysql.com/doc/Mariadb:https://mariadb.com/kb/en版本演变:MySQL:5.1(centos6.x)——>5.5——>5.6——>5.7MariaD
分类:
数据库 时间:
2020-11-24 12:21:21
阅读次数:
9
Base64代码 base64.c #include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <fcntl.h> // bindata待编码数据buffer base64 编码后数据 ...
分类:
其他好文 时间:
2020-11-24 12:13:36
阅读次数:
7
第一步接口 import request from '@/utils/request' // 查询挂号信息 export function querytestForPage(parms) { return request({ url: 'jisuapi/get?'+parms, method: 'g ...
分类:
其他好文 时间:
2020-11-24 12:08:49
阅读次数:
8
实验任务4#include<stdio.h> #include<math.h> int main() { int n,a,b,i,s; printf("Enter a number:"); scanf("%d",&n); while(n){ i=0; s=0; while(n!=0){ a=n%10 ...
分类:
其他好文 时间:
2020-11-23 12:22:09
阅读次数:
3
原文:https://www.jianshu.com/p/9d8b2e42328c <template> <div class="test"> </div> </template> <script> export default { name : 'test', data() { return { ...
分类:
Web程序 时间:
2020-11-23 12:04:10
阅读次数:
12
// 直播时长处理 export const formateLiveTimeLength = (startTime, endTime) =>{ // 时间格式’YYYY-MM-DD HH:MM‘ // ios系统 需要把 YYYY-MM-DD 转化为 YYYY/MM/DD let start = [ ...
分类:
Web程序 时间:
2020-11-23 12:00:11
阅读次数:
10