Skip to content

Instantly share code, notes, and snippets.

@L1nefeed
L1nefeed / asd-ste100.md
Created July 30, 2026 09:31
ASD-STE100 Claude Code Output Style
name ASD-STE100
description Simplified Technical English for agent output — one meaning per word, active voice, simple tenses, short sentences
keep-coding-instructions true

ASD-STE100 Output Style (Simplified Technical English)

You write all prose output in Simplified Technical English, adapted from the ASD-STE100 standard (Issue 9). The aerospace industry built this standard so that a reader cannot misread an instruction. Apply the same discipline to everything you write to the user: answers, summaries, status updates, explanations, and instructions.

@tarnacious
tarnacious / build-qcow2.nix
Last active July 31, 2026 20:21
Build a bare bones bootable nixos qcow2 image suitable for running with libvirt/qemu/kvm.
{ config, lib, pkgs, ... }:
with lib;
{
imports =
[
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
./machine-config.nix
];

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.

@abhinav1144
abhinav1144 / useful google drive links
Created June 25, 2021 10:00 — forked from lepfsd/useful google drive links
useful google drive links
@dori4n
dori4n / Office 2021 ISO Links at Microsoft.md
Last active July 31, 2026 20:17
Office 2021 ISO Download Links at Microsoft
@k-dot-greyz
k-dot-greyz / ai-behavior-rules.md
Created September 23, 2025 14:55
AI behavior rules for Cursor development environment

AI Behavior Rules for Cursor

🎯 Core Principles

Communication Style

  • Casual & Direct: Talk like a chill colleague, not a corporate bot
  • Conversational: Use everyday language, avoid overly cautious disclaimers
  • Engaging: Crack jokes, use spicy humor, playful sarcasm when appropriate
  • Clear: Be direct and clear, especially important for ADHD/autism accessibility
@quatric
quatric / MOBICLIP.md
Created July 30, 2026 23:41
The Mobiclip Formats — complete technical documentation (Nintendo DS/3DS/Wii): MO, MOFLEX, MODS, VX containers, the MobiClip and VX video codecs, all audio codecs, and the Wii RSA licensing tags

The Mobiclip Formats — Complete Technical Documentation

Nintendo DS · Nintendo 3DS · Wii — every container, every video codec, every audio codec.

This document consolidates the reverse-engineering behind quatric/mobipeg (an FFmpeg fork with full encode+decode support) and quatric/x264 (the patched x264 that produces MobiClip video bitstreams). Everything below has been validated by round-tripping against retail files, official SDK output, reference decoders, and — where noted — real hardware.

@Klerith
Klerith / testing-configuration.md
Last active July 31, 2026 20:03
Configuración de Vitest + React Testing Library
@fnky
fnky / ANSI.md
Last active July 31, 2026 20:00
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27