The complete explanation is that 1.0.x and 1.1.x do not have the same naming conventions for the generated libraries. OpenSSL 1.1.x has moved into wha ...
分类:
其他好文 时间:
2020-04-30 11:23:13
阅读次数:
98
作者:心叶时间:2018-05-01 18:45 我们都知道,浏览器执行js代码是单线程的,当页面脚步执行时,页面是没办法响应别的的,直到脚步的结束,而这里介绍的WebWorkers就可以改变这一切。 WebWorkers是运行在后台的js代码,独立于其他脚本,不会影响页面的性能。我们可以继续做任何 ...
分类:
编程语言 时间:
2020-04-29 23:15:28
阅读次数:
52
Problem : Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole arra ...
分类:
其他好文 时间:
2020-04-29 23:08:17
阅读次数:
65
一、typescript配置 tsconfig.build.json { "extends": "./tsconfig.json", "compilerOptions": { "outDir": "./deploy/dist", }, "exclude": ["node_modules", "dis ...
分类:
其他好文 时间:
2020-04-28 20:17:47
阅读次数:
209
sftp客户端上传文件到服务器失败,报错 Server and client capabilities don't match. Client list was: aes128-cbc,3des-cbc.Server list was chacha20-poly1305@openssh.com,ae ...
分类:
其他好文 时间:
2020-04-28 15:05:31
阅读次数:
188
一、实践内容 本实践目标是掌握metasploit的基本应用方式,重点掌握常用的三种攻击方式的思路。 二、实践过程 (一)主动攻击实践 靶机:WindowsXP,关闭防火墙,IP地址为192.168.152.138。 攻击机:IP地址为192.168.152.129 对【ms08_067】 攻击机与 ...
分类:
其他好文 时间:
2020-04-28 14:52:54
阅读次数:
61
什么是类Dota游戏的天梯匹配 玩过Dota或者LOL的人都知道 . 天梯匹配系统是一套将 玩家的实力 量化,并进行实时分配组队游戏 , 结算的系统. 旨在将单局游戏的胜率控制在50%左右. 避免出现虐菜,被暴虐,单边木桶短板效应, 实力悬殊的局面 . 以提供更好的游戏体验 . 带着如上所说的目的 ...
分类:
其他好文 时间:
2020-04-28 00:51:24
阅读次数:
85
为什么要用swithyOmega 介绍一个chrome配置浏览器代理的插件,switchyOmega,非常好用。 平时我们在配置chrome代理的时候,其实都跳转到了系统代理的配置界面,是配置了整个系统的代理。每次使用chrome抓包,都需要开启,停止系统代理非常麻烦。 来说说switchyOmeg ...
分类:
其他好文 时间:
2020-04-25 17:06:14
阅读次数:
96
Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Exampl ...
分类:
其他好文 时间:
2020-04-21 22:26:53
阅读次数:
82
operator bool()是什么 在C++中, 语法用来将对象转换为指定的 类型,当这里 为`bool`时,就可以直接在条件判断式里面直接用该对象: 建议 个人还是觉得尽量不要用这种语法,还是像java那样写出特定名字的判断函数最好。C++也真是,搞这些复杂的语法太多了,反而影响语言使用者学习。 ...
分类:
其他好文 时间:
2020-04-19 14:30:37
阅读次数:
77