06 2023 档案
摘要:demo1.go package main import ( "fmt" "io/ioutil" "net/http" ) func fech(url string) string { client := &http.Client{} req, _ := http.NewRequest("GET",
阅读全文
摘要:#include <iostream> int main() { std::cout << "Hello World!\n"; unsigned nEax = 0; unsigned nEbx = 0; unsigned* pEax = &nEax; _asm { lea eax, nEax; mo
阅读全文
摘要:from playwright.sync_api import Playwright, sync_playwright with sync_playwright() as playwright: browser = playwright.chromium.launch() proxy_server
阅读全文
摘要:from playwright.sync_api import Playwright, sync_playwright def request_interceptor(route, request): logger.info(request.url) if 'api.js' in request.u
阅读全文
摘要:#include <iostream> int main() { std::cout << "Hello World!\n"; unsigned nEax = 0; _asm mov nEax, eax; printf("nEax = %08X\n", nEax); _asm { mov al, 0
阅读全文
摘要:https://mp.weixin.qq.com/s?__biz=MzIxMjExNzQxMQ==&mid=2247489687&idx=1&sn=ae14e94f88be71ad3b5acb1885485471&chksm=974baa5ba03c234d1820eb60b6ee62ea0a419
阅读全文
摘要:`ping`命令是基于 ICMP 协议的网络诊断工具,主要用于测试网络通信是否正常以及测量数据包往返时间等。它并不依赖于任何端口开放与否的情况,因此即使你的服务器的22端口没有对外开放,使用`ping`命令一样可以进行网络通信测试。 当你使用`ping`命令测试某个服务器时,它会发出一个 ICMP
阅读全文
摘要:import re # 定义要搜索的字符串 test_string = "hellooooWorld12345Pythonisfuun!!!" # 定义正则表达式 regex_pattern = r'(.)\1{4}' # 在字符串中搜索正则表达式 match = re.search(regex_p
阅读全文
摘要:加密 function _compress(e, t, n) { if (null == e) return ""; var r, o, i, a = {}, s = {}, c = "", u = "", l = "", d = 2, f = 3, p = 2, h = [], v = 0, m
阅读全文
摘要:var code2 = function(){ var open = window.XMLHttpRequest.prototype.open; window.XMLHttpRequest.prototype.open = function (method, url, async){ if (url
阅读全文
摘要:https://blog.csdn.net/w1014074794/article/details/127297409 第一个方法 好用
阅读全文
摘要:在 Python 中,如果一个子类继承了多个父类,而这些父类中都有同名的方法或属性,那么子类在调用这个方法或属性时,会按照 MRO(Method Resolution Order,方法解析顺序)的规则进行查找和调用。在 Python 中,MRO 的顺序是由 C3 算法计算出来的。C3 算法是一种基于
阅读全文
摘要:await this._page.waitForLoadState('networkidle'); await this._page.waitForLoadState('load') await this._page.waitForLoadState('domcontentloaded') awai
阅读全文