Skip to content

Instantly share code, notes, and snippets.

@burkeholland
burkeholland / ainstall.md
Last active February 23, 2026 04:05
Ultralight Orchestration

Ultralight Orchestration

A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.

Instructions

Install all agents listed below into VS Code Insiders...

Title Type Description
@OmerFarukOruc
OmerFarukOruc / claude.md
Last active February 23, 2026 04:05
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
@gauravssnl
gauravssnl / building-gstreamer-from-source.md
Created December 25, 2023 20:09 — forked from SleepingSoul/building-gstreamer-from-source.md
Building GStreamer from source on Linux device

Hardware used: Orange Pi 4 LTS

OS: Armbian Jammy

Should work everywhere on Debian or Ubuntu

Step 1: Install build tools (meson, ninja)

Usually gstreamer uses newer version of meson then available in apt packages, so we need to also build and install it from source. This is super easy. Here I am using 1.2.3 version that is currently latest, but you can use any other version.

sudo apt install pip
@karpathy
karpathy / microgpt.py
Last active February 23, 2026 04:04
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@ferhatelmas
ferhatelmas / done.md
Created October 22, 2012 23:59
The cult of Done Manifesto

The Cult of Done Manifesto

  1. There are three states of being. Not knowing, action and completion.
  2. Accept that everything is a draft. It helps to get it done.
  3. There is no editing stage.
  4. Pretending you know what you're doing is almost the same as knowing what you are doing, so just accept that you know what you're doing even if you don't and do it.
  5. Banish procrastination. If you wait more than a week to get an idea done, abandon it.
  6. The point of being done is not to finish but to get other things done.
  7. Once you're done you can throw it away.
  8. Laugh at perfection. It's boring and keeps you from being done.
@scurest
scurest / simplify_shaders_for_export.py
Last active February 23, 2026 03:53
Simplify Blender shaders to a simple diffuse texture for export (written for GLideN64-Scene-Ripper)
# Fixes shaders from GLideN64-Scene-Ripper for OBJ/etc export.
# Instructions: select objects you want to fix, then run this
# script from the Text editor.
# Tested with Blender 3.6.
import bpy
# Whether to connect the diffuse texture's alpha to the
# Principled Alpha socket in the simplified material.
CONNECT_ALPHA = True
@ManzDev
ManzDev / settings.json
Last active February 23, 2026 03:52
VSCode settings.json (2026)
{
/* UI */
"workbench.colorTheme": "Monokai +Blue",
"workbench.sideBar.location": "right",
"window.zoomLevel": 2,
"breadcrumbs.enabled": false,
"workbench.iconTheme": "vscode-icons",
"telemetry.telemetryLevel": "off",
"window.commandCenter": false,