Rnotify

仓库地址:https://github.com/xvhuan/Rnotify

一款基于rust的webhook桌面通知程序

[!TIP]
该软件需要主机具有公网ip or 内网穿透!(或局域网使用)

功能

支持自定义通知图标,通知昵称

image-20250110204609954

先进的cmd控制界面

image-20250117211000457

优美的通知记录

image-20250117211048644

[!WARNING]

受影响的注册表:

计算机\HKEY_CURRENT_USER\Software\Classes\AppUserModelId\
由于该软件的先进特性,必须在管理员权限下打开

食用方法

curl -X POST 'http://你的ip:54191/notify' -H 'User-Agent: Reqable/2.30.3' -H 'Content-Type: application/json' -d '{"title": "Test Notification", "message": "This is a test message!"}'

请手动将上述curl转为各种语言,指路:https://curlconverter.com/

关于config.json
{
    notification_app_id: "com.r.notify", //不建议修改,虽然不影响什么
    notification_icon_path: 当前路径下+"icon.ico", //通知图标路径,必须是绝对路径
    notification_display_name: "R-notify", //通知昵称,随便你想叫什么
    server_ip: "0.0.0.0", //web服务器的IP地址
    server_port: 54191, //端口!
};

更新日志

1.0 2025.01.09

核心功能完备,可以正常通知。

1.5 2025.01.17

新增:

自定义通知图标,通知昵称

增加任务栏图标,仅有退出功能(后续功能开发中)

用途示例:

如果感觉cmd界面非常的碍眼,可以使用win+tab创建第二个桌面,然后在第二个桌面运行此程序,这样就不会影响美观了

抖音视频解析小工具

最近花了点时间把抖音的abogus纯算搞出来了,搞出来那肯定是要用啦

之前的xb还能使用,暂时没同步到机器人,那就先写个页面练练手吧

登场的必然是我们的饿了么ui,好看又方便

目前支持视频,实况,图文的解析。用起来还是比较方便的。

如果给剪切板权限的话,可以自动粘贴口令或者链接

地址:https://qaq.al/dy

帮你一键干掉小破站的营销号

如果你想一起守护最好的霹雳霹雳营销号提交⬇

项目仓库:https://github.com/xvhuan/qtmdBili

已解决跨域问题,直接粘贴代码到控制台即可,无需复制账号

/**
 * @author ius.
 * @date 2024/4/4
 * @introduction qtmdAD
 */
function getCookie(aim) {
    const allText = document.cookie.replace(/\s*/g, ''); //document.cookie
    oneText = allText.split(";");
    for (var two of oneText) {
        const three = two.split("=");
        if (aim === three[0]) {
            return two.split("=")[1];
        }
    }
}

function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}

function gout(uid) {
    var data = "fid=" + uid + "&act=5&csrf=" + getCookie("bili_jct");
    var xhr = new XMLHttpRequest();
    xhr.withCredentials = true;
    xhr.addEventListener("readystatechange", function () {
        if (this.readyState === 4) {
            console.log(this.responseText);
        }
    });
    xhr.open("POST", "https://api.bilibili.com/x/relation/modify");
    xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    xhr.send(data);
}

(async function () {
    var xhr = new XMLHttpRequest();
    xhr.open('GET', 'https://qaq.al/x.php?v=x', true);
    xhr.onreadystatechange = async function () {
        if (xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
            const uid_list = xhr.responseText.split("^")
            for (const uidListKey in uid_list) {
                gout(uid_list[uidListKey]);
                await sleep(200);
            }
            console.log("ok了老铁")
        }
    }
    xhr.send();
})()

打开b站首页,点击F12,打开开发者工具,找到Console或控制台

将代码粘贴进入,回车即可。等待代码运行完毕,即可享受清爽人生

如果你遇到了没有被拉黑的营销号,请在下方评论区留言,经过审核后将会添加到上述链接中。