You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clean up README intensity levels section to match existing style
Replace verbose two-table layout with compact 3-column side-by-side
table matching the existing Before/After HTML pattern. Remove chatty
intro and forced taglines in favor of natural caveman voice.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+11-49Lines changed: 11 additions & 49 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,73 +66,35 @@ Based on the viral observation that caveman-speak dramatically reduces LLM token
66
66
67
67
**Same fix. 75% less word. Brain still big.**
68
68
69
-
### Now with intensity levels
70
-
71
-
Same examples, you pick the grunt level:
69
+
**Sometimes too much caveman. Sometimes not enough:**
72
70
73
71
<table>
74
72
<tr>
75
-
<th>Level</th>
76
-
<th>React re-render question</th>
77
-
</tr>
78
-
<tr>
79
-
<td>🪶 <strong>Lite</strong></td>
80
-
<td>
81
-
82
-
> "Your component re-renders because you create a new object reference each render. Inline object props fail shallow comparison every time. Wrap it in `useMemo`."
73
+
<tdwidth="33%">
83
74
84
-
</td>
85
-
</tr>
86
-
<tr>
87
-
<td>🪨 <strong>Full</strong></td>
88
-
<td>
75
+
#### 🪶 Lite
89
76
90
-
> "New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."
77
+
> "Your component re-renders because you create a new object reference each render. Inline object props fail shallow comparison every time. Wrap it in `useMemo`."
91
78
92
79
</td>
93
-
</tr>
94
-
<tr>
95
-
<td>🔥 <strong>Ultra</strong></td>
96
-
<td>
80
+
<tdwidth="33%">
97
81
98
-
> "Inline obj prop → new ref → re-render. `useMemo`."
82
+
#### 🪨 Full
99
83
100
-
</td>
101
-
</tr>
102
-
</table>
103
-
104
-
<table>
105
-
<tr>
106
-
<th>Level</th>
107
-
<th>Auth middleware bug</th>
108
-
</tr>
109
-
<tr>
110
-
<td>🪶 <strong>Lite</strong></td>
111
-
<td>
112
-
113
-
> "Your auth middleware has a bug. The token expiry check uses `<` instead of `<=`. Here's the fix:"
84
+
> "New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."
114
85
115
86
</td>
116
-
</tr>
117
-
<tr>
118
-
<td>🪨 <strong>Full</strong></td>
119
-
<td>
87
+
<tdwidth="33%">
120
88
121
-
> "Bug in auth middleware. Token expiry check use `<` not `<=`. Fix:"
89
+
#### 🔥 Ultra
122
90
123
-
</td>
124
-
</tr>
125
-
<tr>
126
-
<td>🔥 <strong>Ultra</strong></td>
127
-
<td>
128
-
129
-
> "Auth bug. Expiry: `<` → `<=`. Fix:"
91
+
> "Inline obj prop → new ref → re-render. `useMemo`."
130
92
131
93
</td>
132
94
</tr>
133
95
</table>
134
96
135
-
**Same fix. Three grunt level. Pick your rock size.**
0 commit comments