Skip to content

Instantly share code, notes, and snippets.

View kovachwt's full-sized avatar

Nikola Kovachevski kovachwt

  • Webthink
  • Skopje, Macedonia
View GitHub Profile
@thelbane
thelbane / analysis.md
Last active April 17, 2026 15:22
Claude Code vs. Pi Behavioral Analysis

Claude Code vs Pi: Behavioral Analysis & Configuration Guide

TL;DR — claude-lean

Claude Code ships with a ~900-line system prompt and ~30 tools that actively fight a bash-first workflow. Three CLI flags fix most of it:

#!/bin/bash
claude \
 --dangerously-skip-permissions \
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active July 13, 2026 23:40
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}