Skip to content

Instantly share code, notes, and snippets.

@thisAdo
thisAdo / tiktok.js
Created May 18, 2026 02:26
Tiktok Downloader/Search
// © Ado | 2026
// Tiktok Search/Downloader
const q = ""; // Aquí la búsqueda a realizar o link del vídeo a descargar :D
const limit = 18;
const API = "https://www.tikwm.com";
const UA = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36";
async function api(endpoint, params) {
const res = await fetch(`${API}${endpoint}`, {

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.

@bdennis-dev
bdennis-dev / mission-control-prompt.md
Created February 7, 2026 02:18
OpenClaw Mission Control Dashboard — Build Prompt

OpenClaw Mission Control Dashboard — Build Prompt

Give this prompt to your OpenClaw agent and it will build a full Mission Control dashboard for you.

Prerequisites

  • OpenClaw running with gateway accessible (default: http://127.0.0.1:18789)
  • Node.js installed
  • Your gateway token (found in your OpenClaw config)

@sakibch
sakibch / 1D Numpy Python.ipynb
Created April 3, 2020 22:00
Numpy Basics and Array Operations
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@isingh
isingh / claude-i
Created May 15, 2026 03:57
claude-i
#!/usr/bin/env python3
"""claude-i: like `claude -p`, but driven through an interactive Claude session.
Architecture:
- tmux session hosts an interactive `claude` (kill-session nukes the whole
process tree — pty alone can't do this reliably).
- A Stop hook (one-time install into ~/.claude/settings.json), gated on
$CLAUDE_I_SENTINEL, writes the hook payload and touches a sentinel.
- We wait on the sentinel, read the transcript path from the payload,
extract the last assistant message, then kill the tmux session.