Skip to content

Instantly share code, notes, and snippets.

View ThePedroo's full-sized avatar

Pedro.js ThePedroo

View GitHub Profile
@ThePedroo
ThePedroo / verify-zip.js
Last active May 18, 2025 20:33
SignSee, a tool to check if a ReZygisk build has been tampered with and if it uses official public key.
#!/usr/bin/env node
/*
SignSee 0.0.2 by ThePedroo
Licensed under AGPL 3.0 by ThePedroo,
read about in Open Source Initiative: https://opensource.org/license/agpl-v3
*/
import fs from 'node:fs'
@ThePedroo
ThePedroo / main.c
Created January 31, 2024 02:52
Concord suppress notification example
#include <string.h>
#include <concord/discord.h>
#include <concord/log.h>
void on_message(struct discord *client, const struct discord_message *message) {
if (message->author->bot) return;
if (strcmp(".concord-test", message->content) == 0) {
struct discord_create_message params = {