搜索找到 36 个匹配

rxxx
2026年 6月 5日 11:18 星期五
版面: 笔记
主题: IP相关的API
回复总数: 0
阅读次数: 8

IP相关的API

查ip信息
https://get.geojs.io/v1/ip/geo/{ip}.json
http://ip-api.com/json/{ip}
https://ip234.in/search_ip?ip={ip}
https://ip125.com/api/{ip}
https://api.ip.sb/geoip/{ip}

收集
https://github.com/ihmily/ip-info-api


=======================================

查ip分
https://iprisk.top/ip/123.111.169.70
https ...
rxxx
2026年 5月 28日 15:50 星期四
版面: 笔记
主题: [now use]cf proxy 区域IP
回复总数: 0
阅读次数: 12

[now use]cf proxy 区域IP

https://iprisk.top/ip/123.111.169.70
https://ping0.cc/ip/123.111.169.70
https://www.ipqualityscore.com/
https://ipdata.co/

#暂时不用
[iprisk_高分好][ping0_低分好][iplark_高分好][ip234_低分好][ippure_低分好][ipqualityscore_低分好][ipdata_高分好]
https://iplark.com/123.111.169.70
https://ip234.in/fraud_check?ip=123.111.169 ...
rxxx
2026年 5月 6日 11:48 星期三
版面: tvbox
主题: 2026-05-06:可用的解析接口
回复总数: 0
阅读次数: 74

2026-05-06:可用的解析接口

https://json.fongmi.cc/web?url=
https://free.maccms.xyz/?url=
https://bfq.937auth.vip?url=
https://jx.xmflv.com/?url=
https://jx.aidouer.net/?url=
https://jx.77flv.cc/?url=
https://jx.m3u8.tv/jiexi/?url=
https://www.ckplayer.vip/jiexi/?url=
https://jx.playerjy.com/?ads=0&url=
https://jx.hls.one/?url ...
rxxx
2026年 3月 4日 15:21 星期三
版面: 笔记
主题: v2rayN软件测速地址
回复总数: 0
阅读次数: 11

v2rayN软件测速地址

rxxx
2025年 12月 25日 10:47 星期四
版面: music
主题: nodejs 测试音源api使用的测试代码
回复总数: 0
阅读次数: 20087

nodejs 测试音源api使用的测试代码

nodejs 测试音源api使用的测试代码

const axios_1 = require("axios");
//QQ是songmid,其他的是id
const quality = '320k';
const musicItem = {'songmid':'001ufyHx10iWpg'};
//const musicItem = {'songmid':'0016O7hh1h111I'};
//const musicItem = {'id':'1888381008'};
//QQ是songmid,其他的是id
//${musicItem.songmid}
//${musicItem.id ...
rxxx
2025年 12月 11日 10:54 星期四
版面: 空间,域名
主题: 越南主机dataonline变更域名
回复总数: 0
阅读次数: 7177

越南主机dataonline变更域名

越南主机dataonline变更域名
------------------------------------------
1.登录https://my.dataonline.vn/
2.'Dashboard'里面点击自己的免费主机'Free Hosting 1GB'
3.点'Access Control Panel' -> 点'Click here to access Control Panel'
4.点'账号管理' -> 点'域名设置'
5.选择要换的域名点'重命名域名'。(重命名前先把新域名A记录到'103.137.185.66')
6.变更完毕等几分钟新域名就可以访问了 ...
rxxx
2025年 12月 1日 16:04 星期一
版面: 笔记
主题: cf worker请求使用量查询
回复总数: 0
阅读次数: 30956

cf worker请求使用量查询

// _worker.js —— 最终极简纯净版(仅北京时间更新 + 最清晰提示)
//api令牌:只使用‘用户分析:读取’

const ACCOUNT_ID = "ACCOUNT_ID"; // ← 修改这里
const API_TOKEN = "API_TOKEN"; // ← 修改这里

export default {
async fetch(request) {
const url = new URL(request.url);

if (url.pathname === '/admin/getCloudflareUsage') {
const result = await ...
rxxx
2025年 11月 26日 17:28 星期三
版面: 笔记
主题: claw_cloud部署vmess
回复总数: 0
阅读次数: 9226

claw_cloud部署vmess

#claw_cloud部署vmess

##仓库地址:https://github.com/yonggekkk/argosbx
一、先创建隧道

1.进入cf->Zero Trust->网络->连接器(概述下面这个)->创建隧道->选择Cloudflared->输入隧道名称->保存隧道
2.复制"运行以下命令:里面的KEY"->点下一步
3.选择一个自己要使用的域名,添加上前缀,路径不用填,
4.服务里面选择:http,url填:localhost:8001(8001就是隧道要使用的端口)
5.点完成设置
注意:保存隧道域名和隧道key方便后面使用

二、创建命令
一键命令生成器:https ...
rxxx
2025年 11月 14日 12:24 星期五
版面: 笔记
主题: windows系统如何查看端口被占用、杀进程
回复总数: 0
阅读次数: 11775

windows系统如何查看端口被占用、杀进程

windows系统如何查看端口被占用、杀进程
首先是启动windows的命令窗口,按键盘上的windows+R,然后在输入框中输入cmd,既可以启动命令窗口

端口被哪个应用占用
netstat -aon|findstr “50016”

通过id查找对应的进程名称
tasklist |findstr “进程id号”

自己现用关闭’svchost.exe’的方法
1.打开任务管理器

2.详细信息-找到PID -右键-转到服务-停止

根据进程的名称杀掉进程
taskkill /f /t /im “进程id或者进程名称”

系统当前所有的端口使用情况
输入netstat -ano然后回车 ...