Skip to content

Instantly share code, notes, and snippets.

@aallan
aallan / mac-vendor.txt
Last active June 3, 2026 16:28
List of MAC addresses with vendors identities
000000 Officially Xerox
000001 SuperLAN-2U
000002 BBN (was internal usage only, no longer used)
000003 XEROX CORPORATION
000004 XEROX CORPORATION
000005 XEROX CORPORATION
000006 XEROX CORPORATION
000007 XEROX CORPORATION
000008 XEROX CORPORATION
000009 powerpipes?
@kennyg
kennyg / llm-wiki-obsidian-setup.md
Last active June 3, 2026 16:28
LLM-Wiki Obsidian Setup Guide — full implementation of Karpathy's llm-wiki pattern

Setting Up the LLM-Wiki Pattern in Obsidian

Based on Karpathy's llm-wiki pattern — using LLMs to incrementally build and maintain a persistent, interlinked wiki from raw sources rather than re-deriving knowledge on every query.

Quick Start — Paste This Into Your Agent

Copy the prompt below into Claude Code, Codex, or any LLM agent with file access. It will scaffold the wiki, configure the tooling, and update your CLAUDE.md with the schema. Then you just start ingesting sources.

I want to set up the llm-wiki pattern in my Obsidian vault. Follow this guide exactly:

How to Prepare for the dbt Analytics Engineering Certification Exam

📝 Study asset for the dbt Analytics Engineering Certification Practice Tests course on Udemy — 195 exam-style questions across 3 timed tests, updated for dbt 1.11.

The Uncomfortable Truth

Hands-on experience is not enough to pass this exam. This is the #1 takeaway from everyone who's taken it. Even engineers with 2+ years of daily dbt use have failed. The exam tests features you may have never touched in your day-to-day work — snapshots, exposures, model governance, state selectors, Python models.

You need dedicated study time, not just "I use dbt at work."

What Experience Do You Need for the dbt Certification?

📝 Study asset for the dbt Analytics Engineering Certification Practice Tests course on Udemy — 195 exam-style questions across 3 timed tests, updated for dbt 1.11.

Official Prerequisites

dbt Labs recommends:

  • SQL proficiency — Joins, aggregations, CTEs, window functions
@latenssi
latenssi / claude-code-wsl-toast-notifications.md
Last active June 3, 2026 16:20
Windows toast notifications for Claude Code in WSL2 - get notified when Claude needs input or finishes a task

Windows Toast Notifications for Claude Code in WSL2

Get native Windows 10/11 toast notifications when Claude Code needs your input or finishes a task.

Prerequisites

  • Windows 10/11 with WSL2
  • powershell.exe accessible from WSL (default in most setups)
  • jq installed in WSL (sudo apt install jq)
@0xjac
0xjac / private_fork.md
Last active June 3, 2026 16:20
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git

@iyakushchenko
iyakushchenko / summarizer-version.json
Last active June 3, 2026 16:24
Summarizer Figma plugin — version beacon (auto-updated on publish)
{"version":"1.1.84","buildTime":1780503673598,"notes":"Published 2026-06-03"}

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.

@kbhuwalka
kbhuwalka / code-imporvement.md
Last active June 3, 2026 16:18
Code Improvement

Scoped Quality Improvement

Improve code quality only where it directly supports the assigned change.

Evolve the codebase toward higher quality, but let the assigned task set the boundary. Do not chase unrelated cleanup.

Required:

  • Reuse existing types, utilities, hooks, components, and patterns before adding