Skip to content

Instantly share code, notes, and snippets.

View valt-x's full-sized avatar
:fishsticks:
it’s all wasted anyway. you die in the end,but who knows the end.

Valt aoi valt-x

:fishsticks:
it’s all wasted anyway. you die in the end,but who knows the end.
View GitHub Profile
@valt-x
valt-x / Startup.py
Created December 23, 2025 14:37
The Developer's AI Tool Fatigue
AI_TOOL_CHURN = {
"Monday": "New vector DB drops on Hacker News",
"Tuesday": "Everyone tweets it's revolutionary",
"Wednesday": "Tutorials flood Medium",
"Thursday": "Discord community has 10k members",
"Friday": "Critical security flaw discovered",
"Weekend": "Abandoned for next shiny thing"
}
@valt-x
valt-x / Test.py
Created December 3, 2025 18:14
The Real Test Suite
def test_ai_startup():
"""What actually gets tested"""
assertions = [
"API key is valid (sometimes)",
"Can handle 2 concurrent users",
"Error page has cute animation",
"Pricing page shows $99/mo",
"'Contact sales' button works"
]
return any(assertions) # optimistic testing
@valt-x
valt-x / Timeline.py
Created December 3, 2025 18:12
Startup Timeline
TIMELINE = {
"Day 1": "We're changing the world!",
"Week 2": "We got into YC!",
"Month 3": "We're AI-native now",
"Month 6": "Pivoting to enterprise",
"Year 1": "Looking for acquihire",
"Year 2": "Tech Twitter meme"
}
@valt-x
valt-x / Invocation.txt
Last active December 3, 2025 18:10
The Real Innovation
Startup's claim: "Revolutionary AI agent platform"
Actual code: `openai.ChatCompletion.create()`
Tech debt: Handling rate limits
Scale achieved: 5 paying customers
@valt-x
valt-x / Wordlist.txt
Created December 3, 2025 18:07
Buzzword Bingo Card
BUZZWORDS_2025 = [
["Web3", "AGI", "Quantum", "Sovereign"],
["RAG", "Agents", "Multimodal", "GPU"],
["DevEx", "Prompt engineering", "Fine-tuning", "RLHF"],
["Latency", "Vector DB", "Orchestration", "MoE"]
]
@valt-x
valt-x / Startup.py
Created December 3, 2025 18:02
Wrapper Inception
def build_startup():
"""How modern unicorns are made"""
steps = [
"Find existing API",
"Add 'AI-powered' prefix",
"Build nicer UI",
"Charge 5x more",
"Raise $10M series A",
"Get acquired when API changes"
]
@valt-x
valt-x / Hype.txt
Last active December 3, 2025 18:40
Real Developer vs. AI Hype
What I do: What my LinkedIn says:
------------ -----------------------
`pip install` "Leveraging cutting-edge ML"
Debug API calls "Architecting AI agent systems"
Read docs "Reverse-engineering emergent behaviors"
Fix CSS "Human-centered AI alignment"
@valt-x
valt-x / Startup.py
Created December 3, 2025 18:00
The Hype Cycle
class StartupHype:
def __init__(self):
self.stages = [
"Building in stealth 🕵️",
"Just launched on Product Hunt! 🚀",
"AI-native rearchitecture 🔄",
"Pivot to B2B enterprise 🤵",
"Acqui-hired by Google 🎉",
"Domain expired 💀"
]
@valt-x
valt-x / Checklist.txt
Last active December 3, 2025 17:59
VC Funding Requirements (2025)
VC_CHECKLIST = [
"Uses 'AGI' in pitch deck",
"Claims 10x better than current solution",
"Team photo with too many MacBooks",
"TAM slides showing $100B+ market",
"Demo that's just ChatGPT with CSS"
]
@valt-x
valt-x / Main.py
Created December 3, 2025 17:56
Tech stack for new coders
# 1. The Real AI Stack
def real_ai_stack():
"""
Everyone's "AI Startup" tech stack
"""
return {
"frontend": "React with gradient backgrounds",
"backend": "FastAPI (single endpoint)",
"ai": "OpenAI wrapper function",
"database": "Supabase (free tier)",