Skip to content

Instantly share code, notes, and snippets.

# OpenClaw Implementation Prompts
Each prompt below is a self-contained brief you can hand to an AI coding assistant (or use as a project spec) to build that use case from scratch. Adapt the specific services to whatever you already use — the patterns are what matter.
---
## 1) Personal CRM Intelligence
```
Build me a personal CRM system that automatically tracks everyone I interact with, with smart filtering so it only adds real people — not newsletters, bots, or cold outreach.
@karpathy
karpathy / microgpt.py
Last active February 14, 2026 12:19
microgpt
"""
The most atomic way to train and inference 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
@monbang
monbang / The Best Medium-Hard Data Analyst SQL Interview Questions
Created May 3, 2020 16:15
The Best Medium-Hard Data Analyst SQL Interview Questions
# The Best Medium-Hard Data Analyst SQL Interview Questions
By Zachary Thomas ([[email protected]](mailto:[email protected]), [Twitter](https://twitter.com/zach_i_thomas), [LinkedIn](https://www.linkedin.com/in/thomaszi/))
**Tip: **See the Table of Contents (document outline) by hovering over the vertical line on the right side of the page
## Background & Motivation
> The first 70% of SQL is pretty straightforward but the remaining 30% can be pretty tricky.
@pbrilius
pbrilius / investagram.in.md
Created February 14, 2026 12:16
Prototype Inn

prototype.in

  • mvc
  • adr
  • mvvm
  • hybrid-container
  • urn-router
  • paradigmas
  • orm
  • ars
@rngadam
rngadam / vsc-proxmox.md
Created December 20, 2024 14:13
Visual Studio Code Server setup on Proxmox (Gemini-generated)

Here's a step-by-step plan to configure a Proxmox server on your home network with an LXC container running Visual Studio Code Server, leveraging your existing router's SSH pass-through and DynDNS:

Phase 1: Proxmox Installation and Initial Setup

  1. Download Proxmox ISO:

    • Go to the official Proxmox website (www.proxmox.com) and download the latest ISO image.
  2. Prepare Bootable Media:

    • Create a bootable USB drive or DVD using a tool like Rufus (Windows), Etcher (cross-platform), or the dd command (Linux/macOS).
@tdreyno
tdreyno / airports.json
Created December 13, 2012 18:50
JSON data for airports and their locations
This file has been truncated, but you can view the full file.
[
{
"code": "AAA",
"lat": "-17.3595",
"lon": "-145.494",
"name": "Anaa Airport",
"city": "Anaa",
"state": "Tuamotu-Gambier",
"country": "French Polynesia",
@kunihiko-sugiura
kunihiko-sugiura / seo.md
Created April 9, 2017 00:28
SEOの基本設定

SEOに関してネットを見て、まとめています。

基本設定

設定する単語について

実際に検索されそうな単語を指定した方がよい。 例としてSEOに関連するツールの場合、前者の方がマッチしやすいはず。

  • SEOツール・PCソフトの株式会社〇〇
  • SEOに便利な各種ツールの開発 株式会社〇〇

ページタイトル

@kieranklaassen
kieranklaassen / SKILL.md
Last active February 14, 2026 12:10
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns.

Claude Code Swarm Orchestration

Master multi-agent orchestration using Claude Code's TeammateTool and Task system.