<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> </body> <script type="text/javascript"> // 在js里面声明一个变量都必须使用var声明.表 ...
分类:
Web开发 时间:
2020-03-28 23:08:04
收藏:
0 评论:
0 赞:
0 阅读:
68
1. Web的基本数据帧格式: WebSocket在建立连接之后,通信的基本数据格式如下图(来源RFC6455-5.2),没有Http请求那么多固定的报文,且不用重复建立连接,所以通信效率高: 2. Websocket是如何管理连接的? RFC6455-5.5给出了答案,协议定义了Control F ...
分类:
Web开发 时间:
2020-03-28 23:07:30
收藏:
0 评论:
0 赞:
0 阅读:
82
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <!-- 执行的時候是自上而下,当放在这里的时候就... 如果希望在head标签里面执行,那么需要添加一个入口函数 --> <script type="text/ ...
分类:
其他 时间:
2020-03-28 23:07:14
收藏:
0 评论:
0 赞:
0 阅读:
73
题目 When register on a social network, you are always asked to specify your hobbies in order to find some potential friends with the same hobbies. A “s ...
分类:
其他 时间:
2020-03-28 23:06:59
收藏:
0 评论:
0 赞:
0 阅读:
77
1.Order Of Drawing Demo: This demo explains about sequential drawing. This is key to drawing multiple objects to the screen e.g. overlapping objects. ...
分类:
其他 时间:
2020-03-28 23:06:24
收藏:
0 评论:
0 赞:
0 阅读:
94
'''项目启动入口'''import osimport sys# 将项目的根目录,添加到sys.path中sys.path.append( os.path.dirname(os.path.dirname(__file__)))from core import srcif __name__ == '_ ...
分类:
其他 时间:
2020-03-28 23:06:03
收藏:
0 评论:
0 赞:
0 阅读:
66
Allocation 题意:n(1e5)个数,选出尽可能多的数使他们总和小于等于b。 思路:排序,尽可能取小。 1 #include<bits/stdc++.h> 2 #define LL long long 3 #define dl double 4 void rd(int &x){ 5 x=0; ...
分类:
其他 时间:
2020-03-28 23:05:30
收藏:
0 评论:
0 赞:
0 阅读:
76
2019 2020 2 20175202葛旭阳《网络对抗技术》 Exp3 免杀原理与实践 一、实验任务 1.方法: ①正确使用msf编译器。 ②msfvenom生成如jar之类的其他文件。 ③veil。 ④加壳工具。 ⑤使用C+shellcode编程。 ⑥使用其他课程未介绍方法。 2.通过组合应用各 ...
分类:
其他 时间:
2020-03-28 23:04:36
收藏:
0 评论:
0 赞:
0 阅读:
61
一、准备工作 下载Jenkins的war包。 http://mirrors.jenkins.io/war-stable/latest/jenkins.war 安装tomcat,可参阅: 二、上传至tomcat,webapps文件夹启动tomcat war包会解压。查看tomcat安装目录下logs文 ...
分类:
其他 时间:
2020-03-28 23:04:13
收藏:
0 评论:
0 赞:
0 阅读:
73
一、以管理员权限启动PowerShell,输入lxrun /setdefaultuser root,打开WSL,输入passwd root修改密码。 二、打开CMD或PowerShell,输入ubuntu config --default-user root,修改ubuntu系统默认用户为root, ...
分类:
Windows开发 时间:
2020-03-28 23:03:53
收藏:
0 评论:
0 赞:
0 阅读:
198
背景 前不久开发了一个运营小工具,运营人员上传一个id的列表,即可导出对应id的额外数据。需求本身不复杂,很快就开发完了,但上线后,运营反馈了一个问题,导出后的数据跟导出之前的数据顺序不一致。![1.png]( https://i.loli.net/2020/03/28/psGMa8ySYvFlLk ...
分类:
其他 时间:
2020-03-28 23:03:31
收藏:
0 评论:
0 赞:
0 阅读:
64
分布式事务 1.什么是事务 事务是用于访问和修改各种数据项的一个程序单位,这个程序要么全部执行,要么全部放弃。 2.为什么会引入事务的概念 针对于数据库来说,对数据文件的记录进行访问或修改,对这些数据项的修改封装起来来保证对数据项的访问或修改的原子性、一致性、隔离性、持久性。 3.事务的属性 (1) ...
分类:
其他 时间:
2020-03-28 23:03:10
收藏:
0 评论:
0 赞:
0 阅读:
52
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <h1 id="app"> 刘瑞:你知道世界最冷的地方? 龙:哪? 柳:南极 </h1> </body> <script type= ...
分类:
其他 时间:
2020-03-28 23:02:49
收藏:
0 评论:
0 赞:
0 阅读:
58
1009 Product of Polynomials (25分) This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: Each input file cont ...
分类:
其他 时间:
2020-03-28 23:02:30
收藏:
0 评论:
0 赞:
0 阅读:
72
在tomcat中存在两种证书验证情况 (1)单向验证 (2)双向验证 1.tomcat单向认证 服务器端会提供一个公开的公钥,每一个访问此服务器的客户端都可以获得这个公钥,此公钥被加密后,服务器端可以进行解密处理,之后验证是否配对 配置在此次配置中用的是openssl自制证书,证书可以从专业机构进行 ...
分类:
Web开发 时间:
2020-03-28 23:02:08
收藏:
0 评论:
0 赞:
0 阅读:
63
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> </body> <script type="text/javascript"> /** * + * - * * * / * % 取模 ...
分类:
Web开发 时间:
2020-03-28 23:01:31
收藏:
0 评论:
0 赞:
0 阅读:
65
https://bbs.csdn.net/topics/390508323/ 你可以打印出C++的结构体 我打个比方C++结构体 public int X public long Y public String xxx public bool aa这样的结构 在内存中 他是 int 对应的是4个by ...
分类:
编程语言 时间:
2020-03-28 23:01:00
收藏:
0 评论:
0 赞:
0 阅读:
590
codeforces-1327C-Game with Chips 传送门:https://codeforces.com/contest/1327/problem/C 题意:有一个n*m的电路板,给你k个当前点和k个目标点,每次可以进行上下左右的移动(每次移动所有的当前点都动)(如果芯片位于板壁的旁边 ...
分类:
其他 时间:
2020-03-28 23:00:38
收藏:
0 评论:
0 赞:
0 阅读:
72
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <!--引用外部的js代码--> <script type="text/javascript" src="js/demo.js"> </script> </hea ...
分类:
Web开发 时间:
2020-03-28 23:00:17
收藏:
0 评论:
0 赞:
0 阅读:
81
codeforces-1328D- Carousel 传送门:https://codeforces.com/problemset/problem/1328/D 题意:n个数按顺序围成一个圈(1和n连着)给每个数染色,要求相邻的不同数字颜色不可以相同,每种颜色用一个数字代替,输出最少的颜色及颜色分配 ...
分类:
其他 时间:
2020-03-28 22:59:47
收藏:
0 评论:
0 赞:
0 阅读:
80