Skip to content

Instantly share code, notes, and snippets.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active August 14, 2026 23:31
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@iannuttall
iannuttall / agentos-blueprint.md
Created August 14, 2026 12:10
AgentOS blueprint — reconstructed from Danny Postma's Agent SDK talk so an agent can build the system

AgentOS — Product Spec & Implementation Blueprint

Reconstructed from Danny Postma's talk How I Built My Own AgentOS on Claude's Agent SDK (So You Can Too) (2026). This document is both a product spec for a human and an implementation prompt for an AI coding agent. Build exactly this system. Do not invent features that are not specified here.

Role contracts and prompts in this file are reconstructed from the talk, not his verbatim files. Mark every reconstructed prompt in code comments and docs as such.


1. Goal and non-goals

@conradcaffier03
conradcaffier03 / SKILL.md
Created July 26, 2026 10:07
youtube-analyzer/SKILL.md — break down any YouTube video with Claude Code. One drop-in file, no API key, no account. Free from @buildwith.conrad
name youtube-analyzer
description Use when the user gives a YouTube URL and wants the video broken down — transcript, structure, hook, key moments, or the script formula behind it. Works on 5-minute clips and 2-hour talks. Triggers on "/youtube-analyzer <url>", "analyze this video", "break down this video", "what's in this video", "steal this structure".

🆓 YouTube Analyzer — break down any video without watching it

A 40-minute video holds maybe six minutes of signal. You either burn the 40 minutes, or you skip it and never find out. This skill reads the whole thing for you and hands back the structure: the hook, the beats, the timestamps that matter, and the script formula you can reuse.

@intellectronica
intellectronica / 0.README.md
Last active August 14, 2026 23:23
GitHub Copilot + VSCode Agent for Marimo Notebooks

GitHub Copilot + VSCode Agent for Marimo Notebooks

Marimo notebooks are now supported natively inside VSCode with an extension. To work on them agentically with the GitHub Copilot Chat Agent, add marimo.agent.md as an agent definition, and select the Marimo agent in the chat.

The agent understands the structure and common patterns of Marimo notebooks. It operates on the Python code directly and you can see the changes reflected instantly.

@dasdo
dasdo / GIT.md
Last active August 14, 2026 23:15
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@LucaCorigliano
LucaCorigliano / selfrepair.md
Last active August 14, 2026 23:00
Samsung Self Repair Assistant on unsupported devices (Hall IC Calibration methodology on Galaxy Fold 4)

Samsung Self Repair Assistant on Unsupported Devices (Rootless Method)

Updated guide – no root required


Disclaimer

  • This guide is not a beginner step-by-step tutorial. Basic familiarity with ADB and Android system settings is assumed.
  • No root or bootloader unlocking is required for this updated method.
@mayerwin
mayerwin / reolink-tts-gist.md
Last active August 14, 2026 22:58
Playing audio and TTS through Reolink cameras via Home Assistant
@aarondfrancis
aarondfrancis / audit-your-codebase.md
Created August 14, 2026 15:20
A read-only, agent-orchestrated codebase audit prompt for data structures, state modeling, algorithms, and ownership.

Audit this entire codebase for materially useful simplifications in its data structures, state representation, control flow, algorithms, and ownership.

This is an audit-only exercise. Do not edit files, run tests, implement recommendations, commit, or push. Read-only inspection commands are allowed.

You are the coordinator. Continue until the complete codebase has been reviewed and the final audit is validated.

  1. Establish the coverage contract

Inspect the repository and inventory every identifiable subsystem.