Skip to content

Instantly share code, notes, and snippets.

@cugu
cugu / README.md
Last active July 15, 2026 02:30
Webhooks for PocketBase

Webhooks for PocketBase

A simple webhook plugin for PocketBase.

Adds a new collection "webhooks" to the admin interface, to manage webhooks.

Example

The webhook record in the following example send create, update, and delete events in the tickets collection to http://localhost:8080/webhook.

#!/usr/bin/env bun
"use strict";
const fs = require("fs");
const { execSync } = require("child_process");
const path = require("path");
// ANSI color constants
const c = {
cy: '\033[36m', // cyan
@intellectronica
intellectronica / 0.README.md
Last active December 10, 2025 15:11
Global Copilot CLI Just Recipes for Quick AI in the Terminal

Global Copilot CLI Just Recipes for Quick AI in the Terminal

Copilot CLI is a nice CLI agent supporting many of the best models (with a Copilot subscription). One thing I like to use it for, is giving me easy access to AI in a plain terminal.

The snippet above is from my global ~/.justfile. I also have alias j=just in my .zshrc

Each invocation streams the output to the terminal and also copies it to the clipboard.

For example:

@intellectronica
intellectronica / 0.README.md
Last active July 1, 2026 09:00
SKILL: Fetch YouTube Transcript

YouTube Transcript SKILL

Get youtube-transcript.zip

Use this skill to fetch the transcript of a YouTube video, with or without timestamps.

Use this skill with Claude (by extracting it to .claude/skills/) or with any other agent using Skillz.

Note: This skill is unlikely to run successfully on the Claude web app, since access to YouTube is blocked. Use it with Claude Code or other local agents.

@banteg
banteg / readme.md
Last active July 1, 2026 16:31
uninstall beads

Beads Uninstall Script

A comprehensive uninstall/cleanup script for Beads (bd) that removes all traces of the tool from a system.

Usage

./scripts/uninstall.sh            # dry-run (scan $HOME)
./scripts/uninstall.sh --apply    # perform cleanup
./scripts/uninstall.sh --root DIR --apply