Skip to content

Instantly share code, notes, and snippets.

View EliecerC's full-sized avatar

Eliecer Chicott EliecerC

View GitHub Profile
@EliecerC
EliecerC / gist:36476191947c76a1f561af2f44c750ab
Created April 30, 2026 19:52
Claude Code Recommendation Prompt
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
@EliecerC
EliecerC / flatten.js
Created December 19, 2018 03:26
Array Flatten JavaScript
'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);