04 2023 档案

摘要:from twisted.internet import defer, reactor from twisted.web.client import getPage def response(*args, **kwargs): print('返回页面内容') def callback(*args, 阅读全文
posted @ 2023-04-29 12:24 AngDH 阅读(9) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/ASUKA2020/article/details/84556451 阅读全文
posted @ 2023-04-27 01:47 AngDH 阅读(16) 评论(0) 推荐(0) 编辑
摘要:干扰线是单一的颜色 import io from PIL import Image def del_noise(img): # 打开验证码图片 image = Image.open(io.BytesIO(img)) # image = Image.open('o4.png') # 获取图像的宽度和高 阅读全文
posted @ 2023-04-26 15:11 AngDH 阅读(630) 评论(0) 推荐(0) 编辑
摘要:import pandas as pd ff = """ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 阅读全文
posted @ 2023-04-24 19:51 AngDH 阅读(47) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/603275427 阅读全文
posted @ 2023-04-23 10:07 AngDH 阅读(685) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-22 11:26 AngDH 阅读(12) 评论(0) 推荐(0) 编辑
摘要:https://mirrors.tuna.tsinghua.edu.cn/centos/7/isos/x86_64/ https://www.anquanclub.cn/20942.html https://blog.csdn.net/hch814/article/details/118650299 阅读全文
posted @ 2023-04-20 18:00 AngDH 阅读(179) 评论(0) 推荐(0) 编辑
摘要:sudo apt-get install libgtk-3-dev sudo yum install cairo import cairosvg cairosvg.svg2png(url='input.svg', write_to='output.jpg') 阅读全文
posted @ 2023-04-19 20:07 AngDH 阅读(126) 评论(0) 推荐(0) 编辑
摘要:在多继承的情况下,如果几个父类都有相同的方法,可以使用 super() 函数来指定要调用哪一个父类的方法。例如,如果要调用父类 A 的方法,可以使用以下代码: class A: def common_method(self): print("This is A's common method.") 阅读全文
posted @ 2023-04-19 16:30 AngDH 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-18 13:13 AngDH 阅读(21) 评论(0) 推荐(0) 编辑
摘要:var f=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function l(e){return e&&e.__esModule& 阅读全文
posted @ 2023-04-16 11:42 AngDH 阅读(75) 评论(0) 推荐(0) 编辑
摘要:// To add an index to all collections in the database that start with "test" and have a field named "ts", and to run the operation in the background, 阅读全文
posted @ 2023-04-13 12:26 AngDH 阅读(31) 评论(0) 推荐(0) 编辑
摘要:SELECT * FROM my_table PARTITION (partition_name) WHERE column_name = 'value'; ``` 将 `my_table` 替换为您的表名, 将 `partition_name` 替换为您要查询的分区的名称, 将 `column_n 阅读全文
posted @ 2023-04-12 16:19 AngDH 阅读(327) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/suwk1009/article/details/129323226 阅读全文
posted @ 2023-04-10 00:52 AngDH 阅读(22) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_43533250/article/details/104756578 阅读全文
posted @ 2023-04-10 00:51 AngDH 阅读(6) 评论(0) 推荐(0) 编辑
摘要:(function(f){if(typeof exports "object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define "function"&&define.amd){define([],f)}el 阅读全文
posted @ 2023-04-10 00:49 AngDH 阅读(242) 评论(0) 推荐(0) 编辑
摘要:const CryptoJS = require("crypto-js"); // 定义加密密钥 const key = "d080d92911318b86e3eb95534c927b82"; // 定义需要加密的数据 const data = `ru55PtuXxQSIeNgtvG82WcmSnc 阅读全文
posted @ 2023-04-09 23:55 AngDH 阅读(141) 评论(0) 推荐(0) 编辑
摘要:ntdll.dll // Windows NT基本系统组件,包含大量的系统函数,如文件I/O、进程和线程管理、内存管理、安全机制等 wow64.dll // Windows 32位程序运行在64位系统上的兼容性支持组件 wow64base.dll // Windows 32位程序运行在64位系统上的 阅读全文
posted @ 2023-04-09 11:32 AngDH 阅读(281) 评论(0) 推荐(0) 编辑
摘要:sudo yum install iftop 这将显示网络流量的实时视图,包括源和目标IP地址、传输的数据量和当前传输速率。您可以使用箭头键滚动连接列表,并按 q 退出。 sudo iftop sudo iftop -P 阅读全文
posted @ 2023-04-09 00:19 AngDH 阅读(413) 评论(0) 推荐(0) 编辑
摘要:git fetch origin --tags git reset --hard 103.0.5045.0 gclient sync --force --nohooks --with_branch_heads -D 阅读全文
posted @ 2023-04-01 19:12 AngDH 阅读(82) 评论(0) 推荐(0) 编辑

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