Skip to content

Instantly share code, notes, and snippets.

View deejayy's full-sized avatar

deejayy (hu) deejayy

View GitHub Profile
@TheSylvester
TheSylvester / 2026-claude-code-field-guide-by-TheSylvester.md
Last active January 13, 2026 01:00
Your exploration session is the worst one to implement the solution. A field guide that fixes this with fresh context execution. Custom commands included.

Claude Code: A Practical Field Guide

Your exploration session is the worst one to implement the solution.

You've spent an hour exploring a codebase with Claude. You ask it to implement the fix—and it repeats mistakes, forgets what you discussed, or gets confused. LLMs anchor to their own outputs, repeat errors, and degrade at 20% context fill.

The fix: explore in one session, execute in a fresh one.

-- DISCOVER --
@wojteklu
wojteklu / clean_code.md
Last active January 24, 2026 09:20
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules