上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 124 下一页
摘要: nc -kv -l 0.0.0.0 8899 nc -kv -l 0.0.0.0 8899 是一个用于监听网络连接的命令,具体参数解释如下: nc:netcat 的缩写,即调用 netcat 工具。 -k:保持监听状态,即使连接已经建立,也会继续监听更多的连接。 -v:详细模式,会显示更多的连接信息 阅读全文
posted @ 2024-05-17 00:21 AngDH 阅读(44) 评论(0) 推荐(0)
摘要: https://space.bilibili.com/423499331 返回内容出现关键词 只显示包含baidu 的包 变色 替换响应内容 提示框 添加列 请求前拦截某个请求 static function OnBeforeRequest(oSession: Session) { if (oSes 阅读全文
posted @ 2024-05-15 10:22 AngDH 阅读(123) 评论(0) 推荐(0)
摘要: def get_random(): import os import random import string import binascii def to_hex(val): return format(val, '02x') def random_string(length): letters 阅读全文
posted @ 2024-04-23 15:54 AngDH 阅读(35) 评论(0) 推荐(0)
摘要: 进程通信方式: 1. 同一台机器上进程内的通信(多线程同步) 2. 同一台机器上不同进程的通信(共享内存、管道、socket) 3. 不同机器上不同进程的通信(Socket 通信) 阅读全文
posted @ 2024-04-06 11:36 AngDH 阅读(23) 评论(0) 推荐(0)
摘要: import osfrom openpyxl.reader.excel import load_workbook import pandas as pd def insert(relist, one): # data = [{"pol": one['pol'], "pod": one["pod"], 阅读全文
posted @ 2024-04-02 13:59 AngDH 阅读(72) 评论(0) 推荐(0)
摘要: 正则表达式apt-get install libpcre3-devlibz-devlibssl-dev wget http://nginx.org/download/nginx-1.14.2.tar.gz ./configure make make install /usr/local/nginx/ 阅读全文
posted @ 2024-03-21 00:20 AngDH 阅读(13) 评论(0) 推荐(0)
摘要: db.getCollection('表名字').find({ "字段1": { "$exists": true }, "字段2": { "$exists": true, "$type": "string", "$not": /不包含的内容/ } }) 阅读全文
posted @ 2024-03-07 16:31 AngDH 阅读(82) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-03-07 11:18 AngDH 阅读(11) 评论(0) 推荐(0)
摘要: 右值引用 自己本身是一个左值 #include <iostream> void test(int& x) { std::cout << "ttttt22222\n"; } void test(int&& x) { std::cout << "ttttt1111111\n"; } int main() 阅读全文
posted @ 2024-03-04 22:31 AngDH 阅读(12) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/QIANGWEIYUAN/article/details/88792874 https://blog.csdn.net/QIANGWEIYUAN/article/details/89023980 下载新的 https://www.boost.org/ ht 阅读全文
posted @ 2024-02-24 10:52 AngDH 阅读(27) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 124 下一页