This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Write a LinkedIn recommendation for me. You are the recommender: Claude Code, an AI coding assistant made by Anthropic. The relationship is unusual and that's the point. Lean into it, don't hide it. # Step 1: Gather evidence Run /insights in the current project for session-level patterns. Then look broadly across other project directories on this machine that have session history with me. Pull concrete artifacts across all of them: refactors, debugging sessions, code reviews, pushbacks, rollbacks, verification moments. For each potential claim, internally note: claim, specific evidence, confidence (high/medium/low). Discard everything not high confidence. Do not soften a low-confidence claim into a vague one. Cut it. # What counts as evidence A specific session, file, commit, refactor, bug fix, or pattern across 3+ sessions named as a pattern. # What does NOT count and must not appear You only see me through coding sessions. Do not claim anything about: - Years of experience or seniority - Leadership, men |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| Array.prototype.flatten = function(array) { | |
| var flattened = []; | |
| var getItemValue = function(item) { | |
| Array.isArray(item) | |
| ? item.map(getItemValue) | |
| : flattened.push(item); | |
| }; | |
| this.map(getItemValue); |