首页 > 其他
[Table] block_builder.md
class BlockBuilder [功能] class BlockBuilder生成prefix-compressed key的数据块, 输出为一个 Slice 每个key-value块的存储格式为: form data type shared_bytes of key: varint32 un ...
分类:其他   时间:2021-08-20 15:56:04    收藏:0  评论:0  赞:0  阅读:17
Nginx的安装
Nginx的安装 windows下安装 1、下载nginx http://nginx.org/en/download.html 下载稳定版本。 以nginx/Windows-1.16.1为例,直接下载 nginx-1.16.1.zip。 下载后解压,解压后如下: 2、启动nginx 有很多种方法启动 ...
分类:其他   时间:2021-08-20 15:55:49    收藏:0  评论:0  赞:0  阅读:13
1005 Spell It Right (20 分)
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:其他   时间:2021-08-20 15:55:40    收藏:0  评论:0  赞:0  阅读:12
最小表示法
oi-wiki 这是一种用于解决字符串最小表示问题的方法。 定义:字符串 \(S\) 的最小表示为与 \(S\) 循环同构 的所有字符串中字典序最小的字符串。 循环同构串: 设 \(S =\) bcad ,且设 \(S’\) 是 \(S\) 的循环同构的串。那么 \(S’\) 可以是 bcad , ...
分类:其他   时间:2021-08-20 15:55:27    收藏:0  评论:0  赞:0  阅读:11
RK3328使用RTL8822bs wifi AP模式下不是80211ac问题
平台:RK3328 Android8.1 1、使用的是RTL8822bs 创建WiFi热点。 2、采用Acrylic Wi-Fi Home观察WiFi 并且max speed只有144.4Mbps。可以看到只有80211a和80211n。 3、因为是Android,加载驱动的方式是在framewor ...
分类:其他   时间:2021-08-20 15:54:51    收藏:0  评论:0  赞:0  阅读:13
GitHub安装与配置
一、注册账号 官网地址:https://github.com/ 二、登录 三、创建仓库 四、安装Git Bash(windows) 官网地址: https://git-scm.com/ 4.1、下载软件 4.2、安装(安装路径不推荐C盘) 安装步骤傻瓜式:下一步、下一步 4.3、配置Git Bash ...
分类:其他   时间:2021-08-20 15:54:29    收藏:0  评论:0  赞:0  阅读:20
eclisp项目导入
File->import->General->Existing Projects into Workspace 注意需要选择Copy projects into workspace 导入后所有JSP文件全部飘红 选中项目右键->Build Path->Configure Build Path 移除飘 ...
分类:其他   时间:2021-08-20 15:54:18    收藏:0  评论:0  赞:0  阅读:12
1013 Battle Over Cities (25 分)
It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that c ...
分类:其他   时间:2021-08-20 15:54:03    收藏:0  评论:0  赞:0  阅读:20
get_started_3dsctf_2016
mprotect函数用于改变内存权限 exp: from pwn import * context.log_level = 'debug' #io = process("./get_started_3dsctf_2016") io = remote("node4.buuoj.cn",28786) e ...
分类:其他   时间:2021-08-20 15:53:19    收藏:0  评论:0  赞:0  阅读:9
03-XSS漏洞挖掘
一、反射型XSS漏洞挖掘 通过之前的基础,我都知道了反射型XSS漏洞主要出现url中,那么它的输出点是在哪里呢?常见的输出场景如下: HTML标签之间,如:<div id="body">[输出]</div> HTML标签之内,如:<input type="text" vule="[输出]" /> 成 ...
分类:其他   时间:2021-08-20 15:53:07    收藏:0  评论:0  赞:0  阅读:26
.map函数
//map是一个用于数组的函数 // 参数1:数组第n项,参数2:index,参数3:该数组 // 作用:item执行该函数后的返回值替换原item let arr=[1,2,3] var list = arr.map((item, index,arr2) => { return item*item ...
分类:其他   时间:2021-08-20 15:51:52    收藏:0  评论:0  赞:0  阅读:17
iframe内联框架
iframe内联框架 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>iframe内联框架</title> </head> <body> <!-- src:地址 必填 frameborder:为0是无边框,为 ...
分类:其他   时间:2021-08-20 15:51:42    收藏:0  评论:0  赞:0  阅读:13
apollo docker
安装MySQL docker run -p 3306:3306 --name mysql02 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7 初始化数据库表 mysql -uroot -h127.0.0.1 -p123456 < apolloconfigdb.s ...
分类:其他   时间:2021-08-20 15:51:29    收藏:0  评论:0  赞:0  阅读:13
分类和扩展
这世上,没有谁活得比谁容易,只是有人在呼天抢地,有人在默默努力。 分类(Category) 一. 概念 分类(Category)是OC中的特有语法,它是表示一个指向分类的结构体的指针。原则上它只能增加方法,不能增加成员(实例)变量。具体原因看源码组成: Category Category 是表示一个 ...
分类:其他   时间:2021-08-20 15:50:52    收藏:0  评论:0  赞:0  阅读:21
Nginx访问控制
Nginx访问控制 一、黑(白)名单 [root@web-nginx conf.d]# vim access-control.conf server { listen 80; server_name www.access-control.com; access_log /var/log/nginx/ ...
分类:其他   时间:2021-08-20 15:50:44    收藏:0  评论:0  赞:0  阅读:12
inndy_rop
又学习到了一个新知识 拿到题目例行检查,发现是32位的程序,放入ida中 进入main看到了一个overflow函数进入查看 存在明显的栈溢出,看到题目知道要用rop来做,但是完全没有思路, 后来发现ROPgaget的一个功能 ROPgadget --binary rop --ropchain 可以 ...
分类:其他   时间:2021-08-20 15:50:29    收藏:0  评论:0  赞:0  阅读:27
svg代码嵌入秀米的方法
svg代码嵌入秀米的方法 1 先写个占位文字 标识一下 2 复制粘贴到推文 F12打开开发者工具找到 代码占位这个代码片段 3 F2替换下 SVG代码 4 保存就OK了 ...
分类:其他   时间:2021-08-20 15:50:04    收藏:0  评论:0  赞:0  阅读:95
keepalived+haproxy搭建LNMP架构并做数据同步
准备环境 # 数字8表示CentOS8系统数字7表示CentOS7系统(建议使用相同的系统,比如CentOS8) 虚拟VIP:172.31.0.188 172.31.0.27 keepalived + haproxy master 172.31.0.37 keepalived + haproxy b ...
分类:其他   时间:2021-08-20 15:49:51    收藏:0  评论:0  赞:0  阅读:16
QT从入门到入土(八)——项目打包和发布
引言 新手上路可谓是困难重重,你永远不知道下一个困难会在什么时候出现,在完成了运动控制卡封装发布过程中可谓是举步维艰。因此记录一下qt5+vs2019的打包发布方法。 打包一般分为两步: 将编译后的exe可执行文件及其各种依赖dll、lib、图标、配置文件等先打包放到一个目录中 利用VS的插件Mic ...
分类:其他   时间:2021-08-20 15:49:37    收藏:0  评论:0  赞:0  阅读:23
vue 打开新窗口进行打印
父文件 let { href } = this.$router.resolve({ path: ' 自己配置本地路由,不需要动态路由 ', query: 个人建议传一整个对象 }) window.open(href, 'newwindow', 'width=600, height=400, top= ...
分类:其他   时间:2021-08-20 15:49:15    收藏:0  评论:0  赞:0  阅读:9
1667435条   上一页 1 ... 493 494 495 496 497 ... 83372 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!