removed emoji from filenames, Obsidian changed all relevant links

This commit is contained in:
Richard Kranendonk 2026-05-07 15:01:04 +02:00
parent d316285a74
commit 68f1c38681
638 changed files with 710 additions and 3176 deletions

View file

@ -0,0 +1,21 @@
---
tags:
- vibecoding
---
# Rules I give Claude to get better code (curious what works for you) 
After months working with Claude for dev work, I built a set of strict instructions to avoid bad outputs, hallucinated code, or bloated files.
These rules consistently give me cleaner results, feel free to copy/adapt:
1. No artifacts.
2. Less code is better than more code.
3. No fallback mechanisms — they hide real failures.
4. Rewrite existing components over adding new ones.
5. Flag obsolete files to keep the codebase lightweight.
6. Avoid race conditions at all costs.
7. Always output the full component unless told otherwise.
8. Never say “X remains unchanged” — always show the code.
9. Be explicit on where snippets go (e.g., below “abc”, above “xyz”).
10. If only one function changes, just show that one.
11. Take your time to ultrathink when on extended thinking mode — thinking is cheaper than fixing bugs.