Skip to content

Instantly share code, notes, and snippets.

View lleyton's full-sized avatar
🐱
giving a cat headpats

lea lleyton

🐱
giving a cat headpats
View GitHub Profile
@lleyton
lleyton / README.md
Last active July 18, 2022 23:12
Powercord Package Manager (PPM)

A simple and bodgey package manager for Powercord

Installation

Download the ppm.js file, and add it your your PATH. (Make sure to chmod +x it.)

You will need to set the POWERCORD_PATH enviroment variable to your Powercord installation, the root git repository.

(Automated installer coming soon:tm:)

@lleyton
lleyton / translation.md
Last active June 1, 2025 23:37
(ENG) Open Source Business Challenges and Reality, Rui Ueyama

Open Source Business Challenges and Reality

Original Japanese note here.

Original Author: Rui Ueyama (creator of the mold linker)

Translated by @windowsboy111

Minimally edited by @lleyton

@lleyton
lleyton / main.ts
Created October 11, 2024 18:33
Deno script for finding Mastodon accounts from an account's followers list.
import { Rettiwt } from "npm:rettiwt-api";
const fediHandle = /@[\w.-]+@[\w.-]+/;
const apiKey = Deno.env.get("TWITTER_API_KEY");
const username = Deno.args.at(-1);
if (username === undefined)
throw new Error("You must pass your Twitter username as an argument.");