生成 logo进入标小智首页 - 在线设计 logo - 选择自己喜欢的风格 - 生成 logo
教程开始选中自己喜欢的 logo 后,微信扫码登入账号,点击编辑,进入编辑页面按,将 logo 根据喜好二次编辑好保存。
打开Chrome开发者工具(F12),或右键网页任意处选中审查元素,切换到控制台(Console)选项卡,粘贴下方代码回车,显示监控页面。```javascript(function() { // 创建工具UI容器 const container = document.createElement(‘div’); container.id = ‘api-monitor-tool’; container.style = position: fixed; top: 10px; right: 10px; width: 380px; background: rgba(30, 30, 46, 0.95) ...
network
未读前言填写网站Cookies,指定文件目录save_directory,指定最大线程数max_threads,指定下载链接文件input_file,运行即可。
代码import osimport requestsfrom bs4 import BeautifulSoupimport threadingfrom urllib.parse import urljoin# 定义请求头部信息headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0', 'Referer': 'https://mineleak.pro/', 'Cookie': '******' # 替换为你的 Cookie}# 指 ...
前言:为什么需要加速GitHub?GitHub作为全球最大的代码托管平台,国内访问常遇到:
仓库克隆速度低于50KB/s
页面加载超时/403错误
Releases文件下载失败
📌 据2024开发者网络报告,中国大陆访问GitHub的平均延迟高达380ms
方案一:SwitchHosts智能加速1. 工具安装**官方下载地址**:- [macOS x64](https://github.com/oldj/SwitchHosts/releases/download/v4.1.2/SwitchHosts!_macOS_x64.dmg)- [Windows x64](https://github.com/oldj/SwitchHosts/releases/download/v4.1.2/SwitchHosts!_windows_x64_4.1.2.6086.exe)- [Linux AppImage](https://github.com/oldj/SwitchHosts/releases/download/v4.1.2/SwitchHosts!_linux_x ...
selfhosted
未读安装手动安装Docker官方拉取镜像
docker pull whyour/qinglong:latest
运行
docker run -dit \
-v $PWD/ql/data:/ql/data \
-p 5700:5700 \
-e QlBaseUrl="/" \
-e QlPort="5700" \
--name qinglong \
--hostname qinglong \
--restart unless-stopped \
whyour/qinglong:latest
使用代码可以查看运行状态
docker ps
安装依赖
在浏览器输入http://{服务器ip}:5700打开青龙面板。
点击依赖管理->新建依赖,依赖类型选择_nodejs_,自动拆分选择_是_,名称输入依赖的名称,然后点击确定。
crypto-js
prettytable
dotenv
jsdom
date-fns
tough-cookie
tslib
[email protected]
ts-md5
jsdom -g ...
前言本文介绍如何下载spigotmc插件脚本,并使用命令行运行。
提前准备Cookie
安装python环境pip install requestspip install bs4
单个插件下载import requestsheaders = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0', 'Referer': '历史页面链接', 'Cookie': 'cf_clearance=******'}# 发送GET请求url = '下载链接'response = requests.get(url, headers=headers)if response.status_code = ...
dev
未读WARNING: UNPROTECTED PRIVATE KEY FILE!Permissions 0755 for ‘/root/.ssh/id_rsa’ are too open.It is required that your private key files are NOT accessible by others.This private key will be ignored.
[!TIP]给文件权限设置为600 chmod 600 ~/.ssh/id_rsa·····
Could not open a connection to your authentication agent在执行 ssh-add ~/.ssh/id_ras 时发生此错
[!TIP]执行ssh-agent bash后重新尝试·····fatal: not a git repository (or any of the parent directories): .git没有git存储库[!TIP]执行git init创建存储库·····warni ...
network
未读NetFlix解锁检测脚本使用uname -m查看CPU架构
根据架构执行对应指令:
amd64
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/v3.1.0/nf_linux_amd64 && chmod +x nf && ./nf
arm64
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/v3.1.0/nf_linux_arm64 && chmod +x nf && ./nf
mips
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/v3.1.0/nf_linux_mips && chmod +x nf && ./nf
全能脚本 - 包含所有能用到的流媒体
使用脚本前请确认curl已安装
bash < ...
一、 在程序中添加HTTP头PHPheader("Access-Control-Allow-Origin: *");header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept");
JSON{ 'Access-Control-Allow-Origin': '*', }
HTML<meta http-equiv="Access-Control-Allow-Origin" content="*">
二、在服务器中添加在被请求的网站上,设置HTTP头,添加"Access-Control-Allow-Origin:*" //值为*或指定的域名。
三、 使用JSONP格式在jQuery中ajax请求参数dataType:’JSONP’<script> $.ajax({ ...
前言output_file:指定存储结果的文件名和路径。xml_directory:指定要读取的所有 XML 文件所在的目录。download_links:创建一个空列表来存储所有找到的链接。file_path:构建完整的文件路径。content:读取文件内容。links_found:使用正则表达式从文件内容中提取所有包含 ‘/downloads/‘ 的链接。
合并所有xml并保存至txtimport osimport re# 指定存储结果的文件名和路径output_file = 'download_links.txt'# 检查要读取的所有 XML 文件所在的目录xml_directory = r'C:\Users\26370\Desktop\新建文件夹'# 创建一个空列表来存储所有找到的链接download_links = []# 遍历指定目录下的所有文件for filename in os.listdir(xml_directory): if filename.endswith('.xml'): ...
