Skip to content

Instantly share code, notes, and snippets.

View eonist's full-sized avatar
🎯
Focusing

André J eonist

🎯
Focusing
View GitHub Profile
@eonist
eonist / climbing_the_wrong_hill.md
Created December 5, 2025 11:54
climbing_the_wrong_hill.md

Perfect! I found the blog post you were looking for. It's "Climbing the Wrong Hill" by Chris Dixon (not from mathewanders.com), published in September 2009. This is the exact post that uses the mountain peak and local maxima metaphor you described.

The Blog Post: "Climbing the Wrong Hill" by Chris Dixon

The Core Metaphor:

Chris Dixon uses a computer science concept called "hill climbing" to explain why smart, ambitious people often get stuck pursuing the wrong career path. Here's how he explains it:[1]

The Hill Climbing Problem

@eonist
eonist / hasver1.md
Created December 4, 2025 09:17
hash_ver_research.md

Hash-Based Versioning vs Semantic Versioning

Based on the Fizzy project and broader software development practices, the project appears to use hash-based versioning (or a variant combining git commit hashes with dates), which represents a fundamentally different philosophy from semantic versioning.[^1_1][^1_2]

What is Hash-Based Versioning?

Hash-based versioning uses git commit hashes—typically shortened to 7-8 characters—as version identifiers. These are alphanumeric strings like 9ce4987 or 3f9a7c1d that uniquely identify a specific commit in the repository. This approach is increasingly common in continuous deployment environments where releases happen frequently, sometimes multiple times per day.[^1_3][^1_4][^1_5][^1_6][^1_7][^1_8]

@eonist
eonist / 12-unicorn-level-startup-ideas.md
Created December 3, 2025 08:16
Here are 12 unicorn level product positions that no one is working on, but should

12 unicorn level startup ideas

Here are 12 unicorn level product positions that no one is working on, but should

  1. Decentralized github (p2p, annonymity, distributed data store)
  2. Git history 2 usefull timeline story telling (investor updates, SoMe, slack recaps)
  3. Decentralized slack. slack is a just a nice mirc wrapper. how hard could it be?
  4. Decentralized analytics platform. (google analytics but distributed, no lockin, no schenangance)
  5. Cursor that can run 10 agents at the same time with different models, in different branches. then converge when done
  6. IDE focused on local LLM. GPT OSS 120B is as good as GPT5 with agentic coding etc. But you need an m5 at 10k$ to run it
@eonist
eonist / multi-analytics-mcp.md
Created December 3, 2025 06:14
multi-analytics-mcp.md

Looking through the MCP servers repository you provided, I found several servers for analytics platforms, but they are platform-specific rather than multi-platform readers. Here are the analytics-focused MCP servers available:

Dedicated Analytics Platform Servers

Official Integrations:

  • Axiom - Query and analyze logs, traces, and event data
  • Comet Opik - Query logs, traces, prompts and LLM telemetry data
  • Dynatrace - Real-time observability and monitoring platform
  • Grafana - Search dashboards, investigate incidents, query datasources
  • Honeycomb - Query data, alerts, dashboards (Enterprise customers)
@eonist
eonist / scan_for_issues.md
Created December 2, 2025 15:43
scan_for_issues.md

/Users/eon/conduit.design/_docs/architecture_and_structure_guide.md /Users/eon/conduit.design/_docs/code_style_guide.md please read these documents. then scan the code base for lowkey low hangingfruit low risk items that doesnt follow these guids. then make a list of at least 20-40 items and save it to a markdown file for later refactoring. do not refactor yet. just search analyse and make the list

@eonist
eonist / git_hist_transcript.md
Created December 2, 2025 12:40
git_hist_transcript.md

Now let me create detailed monthly timelines for each month in the same format as the August example:

✨ JUNE 2025 - Foundation & Architecture

The Challenge: Build a robust Figma plugin MCP server from the ground up with enterprise-grade patterns.

What We Solved:

Week 1 (Jun 1-7): Core Infrastructure

🏗️ Plugin-Server Communication - WebSocket-based bidirectional messaging

@eonist
eonist / git_history.md
Created December 2, 2025 11:55
FIGMA MCP SERVER: THE COMPLETE STORY

🚀 FIGMA MCP SERVER: THE COMPLETE STORY

Building the Bridge Between AI and Design


🏗️ JUNE - The Foundation

Problem: How do we let AI talk to Figma?

What We Built:

  • Real-time communication channel between AI and Figma
@eonist
eonist / see_what_you_did.md
Created December 2, 2025 11:30
make timeline of your git history

can you look at the git history for this project. grab all the commits. title and descriptions for everything. analyse all of it. and make a chronologically timeline for major milestones and achivments? make it very readable and brief. this has to work in social media almost like story telling.

no. what i want is more like concrete miles stones as the driver for the story telling. try to understand the most siginifcant things that happened. and Make it more of a timeline. a stuctured one with dates.

maybe try to save the entire hist to file?

git log --pretty=format:"[COMMIT_START]%n%H%n%an%n%ad%n%s%n%b%n[COMMIT_END]" > git_history.log

that file is now too big. so dont read it. because you will run out of context window. if you want to read it. use some kind of excerpt call to read it etc

@eonist
eonist / feel_better_2027.md
Created December 1, 2025 14:06
feel_better_2027.md

10 Counter-Arguments to AI 2027's Predictions

Technical Limitations

1. Scaling Laws Are Plateauing Recent evidence shows that simply making models bigger no longer produces proportional capability gains. OpenAI's GPT-5 delivered "incremental gains" rather than transformative breakthroughs, and the Financial Times reports signs of an "AI wall" where scaling yields diminishing returns. The document assumes compute scaling continues producing major advances through 2027.[1][2][3][4]

2. Synthetic Data Quality Problem AI 2027 relies heavily on AIs training on synthetic data generated by other AIs. However, research shows this creates "synthetic biases" that compound over time, producing less accurate models that disproportionately sideline underrepresented groups. Training on AI-generated data may lead to model collapse rather than improvement.[4][1]

@eonist
eonist / Kill process on port.md
Created December 1, 2025 06:38
Kill process on port

Use lsof to find the process using port 3055, then kill it by PID in Terminal.[1][2]

Step 1: Find the PID on port 3055

Run this in Terminal:

sudo lsof -i :3055