Skip to content

Instantly share code, notes, and snippets.

@fordnox
fordnox / laya.sh
Last active September 21, 2026 23:41
Laya on Mac m4 CoreML Offline https://github.com/mizorewww/laya-coreml
mkdir test-laya
cd test-laya
uv init
uv add 'laya-coreml[demo]'
hf download aac6fef/laya-multilingual-coreml-ane --local-dir models/snake
uv run laya-coreml-snake --model models/snake

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.

@arcanemachine
arcanemachine / claude-model-list.md
Last active September 21, 2026 23:26
Claude model list

Claude Model Reference

Last updated: April 30, 2026

Notes

  • To switch models in Claude Code, use the /model command with your desired model ID.

    • Example: /model claude-opus-4-6 (Opus 4.6, 200k context)
  • Info was LLM-generated.

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🌼 My Girl 💖✨</title>
<style>
body {
margin: 0;
overflow: hidden;

Setting up Unifi Talk without Touch device

I recently came across the issue that I wanted to setup Unifi Talk but I didn't want to buy a talk device just to set it up (this was the recommended way from Unifi)

For Unifi Talk 4.2.4 its a little more difficult but still possible:

  1. Go to your Unifi Talk setup page and press right mouse button -> Inspect
  2. Go to Network tab in Dev Tools
  3. Search for index-
@adrian-cacho-fr
adrian-cacho-fr / repo-secrets-kraftor__vault-pub.md
Created September 21, 2026 15:55
Terraform plan diff: repo-secrets-kraftor / vault-pub
data.terraform_remote_state.cost_reporting[0]: Reading...
data.terraform_remote_state.gha_runner: Reading...
data.terraform_remote_state.kraftor: Reading...
data.terraform_remote_state.service_user_groups: Reading...
data.github_repository.repo: Reading...
tls_private_key.repo_key[0]: Refreshing state... [id=33db9961951e2b92c8a6418fa9da07a789f53317]
data.vault_policy_document.kraftor_ai_cost_allocation_policy: Reading...
data.vault_policy_document.kraftor_auth0_eval_policy: Reading...
data.vault_policy_document.kraftor_policy: Reading...
@antoniolg
antoniolg / AGENTS.md
Last active September 21, 2026 23:01
Codex: autonomous Luna subagent, per-task reasoning effort, and completion callbacks

Luna delegation for Codex

Add the following section to ~/.codex/AGENTS.md and save the companion luna_worker.toml as ~/.codex/agents/luna_worker.toml.

Luna Delegation

  • Primary agents: proactively delegate bounded, self-contained jobs to luna_worker when Luna can complete and verify them independently and delegation saves work or supervision. Suitable jobs include authorized releases through established procedures, focused web research, long-running scripts, batch processing, and straightforward implementation. Handle small operations directly by default, unless there are long waits, useful independent parallel work, or an explicit user request to delegate.
  • Delegate preparation, execution, and verification as one complete job. Build a concise brief from available context and file references; avoid extra parent tool calls solely to prepare the delegation when that information is sufficient. Leave input inspection, artifact preparation, and routine validation to Luna, except where the parent n