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 / website starterkit.md
Created November 1, 2025 01:40
website starterkit

acme.co

download button

Hero header title

Our product is magic!

Why our product

We make the best products at the best prices

@eonist
eonist / launch-video-script.md
Last active October 31, 2025 12:53
launch-video-script.md

Launch video script

  • Subtle drum and bass background music plays in the background (ease in ease out)
  • Textwriter effect in the top-center shows prompts. (bottom-center sometime is covered by auto gen speech to text)

Intro:

  • Show conduit.design in black typography. and white background
  • Voice-over: Today marks day1 one of conduit design. So let's get into it. Let's take a look at what conduit design can do for you.

Making a website: (voice over)

@eonist
eonist / outreach.md
Created October 30, 2025 02:46
[https://jodmcp.com/](https://jodmcp.com/) tailor a strategy for outreach. I need to find users that need what I sell.

Based on the search results, Jod AI is an MCP-based agentic AIOps platform that automates observability, monitoring, and debugging for cloud applications. It uses AI to analyze CloudWatch logs, identify issues, perform root cause analysis, and even generate pull requests to fix problems automatically.[1]

Your Ideal Customer Profile

Your target users are DevOps engineers, SREs, platform engineers, and engineering teams who are drowning in observability data from logs, metrics, traces, and alerts. They're losing hundreds of developer hours monitoring dashboards and debugging issues at scale.[1]

Outreach Strategy

Target Communities

@eonist
eonist / landing-page.md
Created October 30, 2025 02:10
landing-page.md

conduit.design

1.5K weekly GitHub downloads

Design complete products in minutes, not hours

Go from blank canvas to polished screens—or edit existing designs—in seconds.

Why conduit.design

@eonist
eonist / pitch-deck.md
Last active October 30, 2025 07:33
pitch-deck.md

conduit.design

Conduit empowers every creative to direct AI-native design—fast, personal, and infinitely scalable.

Problem

  • AI-generated visuals feel generic, converging on the same “Vercel-esque” look.
  • Templates lock users into fixed aesthetics, stifling brand identity.
  • Designers waste hours iterating on minor tweaks instead of ideating.

Solution

@eonist
eonist / appending branch to main.md
Created October 29, 2025 03:07
appending branch to main

can we move everything that is in this branch to the front of the main branch.

I want the commits in main to remain the same. but I want all the commits in this branch e2e_spawn_server_test to be added to the front of the history.

the result should be that the current working dir and files in e2e_spawn_server_test should be what will be in main.

do you understand what I want?

Yes. You want to keep main’s existing history intact (no rewriting or squashing of its commits), but prepend all commits from branch e2e_spawn_server_test on top of main so that:

@eonist
eonist / read_log_with_minimal_token_impact.md
Created October 28, 2025 02:25
read_log_with_minimal_token_impact.md

Yes, there are excellent terminal strategies to search and extract relevant parts from large log files without needing to read the entire file. Here are the most effective approaches:

Essential Commands

grep is the primary tool for searching log files and can find specific patterns, errors, or keywords without loading the entire file into memory. Basic usage includes grep 'ERROR' logfile.txt to find all lines containing "ERROR", or grep -i 'error' logfile.txt for case-insensitive searches. You can search multiple files simultaneously with grep 'pattern' file1 file2 or search recursively through directories using grep -R 'ERROR' ..[1][2][3]

sed excels at extracting specific line ranges from large files. To extract lines 5 through 8, use sed -n '5,8p' somefile.txt, or for non-consecutive lines like 2, 4, and 6, use sed -n '2p;4p;6p' somefile.txt. For very large files, add a quit command after your last line number (e.g., sed -n '2p;4p;6p;7q') to stop processing early and save time.[4

@eonist
eonist / picsum-overview.md
Created October 24, 2025 21:15
picsum-overview.md

Here are different Lorem Picsum URL examples demonstrating various features and options:[1]

Basic Image Sizing

  • https://picsum.photos/200/300 - Random image 200×300 pixels[1]
  • https://picsum.photos/200 - Random square image 200×200 pixels[1]

Specific Images

  • https://picsum.photos/id/237/200/300 - Specific image (ID 237) at 200×300 pixels[1]
@eonist
eonist / ts-prune-workflow.md
Created October 24, 2025 21:14
ts-prune-workflow.md

AI Coder Checklist: ts-prune Safe Removal

For Each Flagged Export

  1. Grep the codebase for the export name (check for dynamic imports, string refs, config files)[1][2]
  2. Only remove the export keyword - never delete the actual code (⚠️️ DO NOT REMOVE ANY CODE, ONLY export word. EXTREMLY IMPORTANT ⚠️️)
  3. If unsure, skip it and move to the next one

Process

@eonist
eonist / set_jsx_api.md
Created October 23, 2025 19:34
set_jsx_api.md

SET_JSX Tool API Documentation - Input Reference

Tool Overview

Command: SET_JSX
Purpose: Import JSX structures directly into Figma as visual design elements

Base Input Schema