06 2023 档案

摘要:demo1.go package main import ( "fmt" "io/ioutil" "net/http" ) func fech(url string) string { client := &http.Client{} req, _ := http.NewRequest("GET", 阅读全文
posted @ 2023-06-30 12:48 AngDH 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-30 09:06 AngDH 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-29 08:21 AngDH 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-28 23:57 AngDH 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-28 23:39 AngDH 阅读(44) 评论(0) 推荐(0) 编辑
摘要:取 相反数 阅读全文
posted @ 2023-06-28 08:52 AngDH 阅读(34) 评论(0) 推荐(0) 编辑
摘要:相当于 a++ 阅读全文
posted @ 2023-06-28 08:21 AngDH 阅读(146) 评论(0) 推荐(0) 编辑
摘要:标志寄存器 阅读全文
posted @ 2023-06-27 09:11 AngDH 阅读(27) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> int main() { std::cout << "Hello World!\n"; unsigned nEax = 0; unsigned nEbx = 0; unsigned* pEax = &nEax; _asm { lea eax, nEax; mo 阅读全文
posted @ 2023-06-27 08:36 AngDH 阅读(20) 评论(0) 推荐(0) 编辑
摘要:from playwright.sync_api import Playwright, sync_playwright with sync_playwright() as playwright: browser = playwright.chromium.launch() proxy_server 阅读全文
posted @ 2023-06-26 12:38 AngDH 阅读(1121) 评论(0) 推荐(0) 编辑
摘要:from playwright.sync_api import Playwright, sync_playwright def request_interceptor(route, request): logger.info(request.url) if 'api.js' in request.u 阅读全文
posted @ 2023-06-26 12:02 AngDH 阅读(1026) 评论(0) 推荐(0) 编辑
摘要:#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 阅读全文
posted @ 2023-06-26 00:15 AngDH 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-25 08:56 AngDH 阅读(5) 评论(0) 推荐(0) 编辑
摘要:https://mp.weixin.qq.com/s?__biz=MzIxMjExNzQxMQ==&mid=2247489687&idx=1&sn=ae14e94f88be71ad3b5acb1885485471&chksm=974baa5ba03c234d1820eb60b6ee62ea0a419 阅读全文
posted @ 2023-06-19 10:59 AngDH 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-19 09:10 AngDH 阅读(5) 评论(0) 推荐(0) 编辑
摘要:`ping`命令是基于 ICMP 协议的网络诊断工具,主要用于测试网络通信是否正常以及测量数据包往返时间等。它并不依赖于任何端口开放与否的情况,因此即使你的服务器的22端口没有对外开放,使用`ping`命令一样可以进行网络通信测试。 当你使用`ping`命令测试某个服务器时,它会发出一个 ICMP 阅读全文
posted @ 2023-06-16 13:06 AngDH 阅读(265) 评论(0) 推荐(0) 编辑
摘要:import re # 定义要搜索的字符串 test_string = "hellooooWorld12345Pythonisfuun!!!" # 定义正则表达式 regex_pattern = r'(.)\1{4}' # 在字符串中搜索正则表达式 match = re.search(regex_p 阅读全文
posted @ 2023-06-13 19:02 AngDH 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-11 14:40 AngDH 阅读(11) 评论(0) 推荐(0) 编辑
摘要:加密 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 阅读全文
posted @ 2023-06-11 13:21 AngDH 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-10 17:23 AngDH 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-10 17:22 AngDH 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-10 15:44 AngDH 阅读(6) 评论(0) 推荐(0) 编辑
摘要:var code2 = function(){ var open = window.XMLHttpRequest.prototype.open; window.XMLHttpRequest.prototype.open = function (method, url, async){ if (url 阅读全文
posted @ 2023-06-08 12:52 AngDH 阅读(219) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/w1014074794/article/details/127297409 第一个方法 好用 阅读全文
posted @ 2023-06-06 16:55 AngDH 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-06 14:25 AngDH 阅读(6) 评论(0) 推荐(0) 编辑
摘要:在 Python 中,如果一个子类继承了多个父类,而这些父类中都有同名的方法或属性,那么子类在调用这个方法或属性时,会按照 MRO(Method Resolution Order,方法解析顺序)的规则进行查找和调用。在 Python 中,MRO 的顺序是由 C3 算法计算出来的。C3 算法是一种基于 阅读全文
posted @ 2023-06-05 20:02 AngDH 阅读(63) 评论(0) 推荐(0) 编辑
摘要:await this._page.waitForLoadState('networkidle'); await this._page.waitForLoadState('load') await this._page.waitForLoadState('domcontentloaded') awai 阅读全文
posted @ 2023-06-01 11:33 AngDH 阅读(148) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示