ah, how I crave a real altseason - powerful, explosive, with no trapped retail traders, just alts ready to rip, fat charts, massive volumes, blazing green candles, shaken up by wild swings. No boring sideways action, just pure momentum, no dull chats full of doubt. A season closed off to those who cashed out on memes and drained the bulls, yet secretly wishing that every single one of my coins - be it $STRK or $DOT - goes at least 20x, storms into my world, but doesn’t kill my vibe. Just enough to break free from those meme-rich speculators and ride my own wave
#shitpost
#shitpost
atlas is coding...
upd on the project, I’ve finished the first page so far Pushed the update to GitHub and also deployed it on Vercel. So if anyone wants to check it out and play around, go for it! https://flappy-caster.vercel.app #dev
upd on the project. I’ve finished the game itself! For now, it doesn’t support mobile devices yet
I’m really starting to like what I’m doing haha
#dev
I’m really starting to like what I’m doing haha
#dev
yo, while I was eating, I remembered this Trump tweet from 2012.
He said if the Dow drops 1k points in 2 days, the prez should be IMMEDIATELY impeached. And guess what? It just dropped 1k+ points in 2 days. Waiting for the next move? 👀
#shitpost
He said if the Dow drops 1k points in 2 days, the prez should be IMMEDIATELY impeached. And guess what? It just dropped 1k+ points in 2 days. Waiting for the next move? 👀
#shitpost
Market’s hella sad rn. Total disappointment. First, they rugged the altseason maxis, then shaved everyone on those "PVE" launches like $TRUMP, $MELANIA, $LIBRA.
But no point in losing hope. Solana still got volume, new tier-2 coins dropping daily, trenches are moving. Game’s tougher, but it ain’t over. So we keep grinding and breaking these f*cking limits
#shitpost #degen
But no point in losing hope. Solana still got volume, new tier-2 coins dropping daily, trenches are moving. Game’s tougher, but it ain’t over. So we keep grinding and breaking these f*cking limits
#shitpost #degen
I found some info for JS/React-Native devs who want to build dApps and crypto wallets, I'll drop it here too, there's a lot of cool stuff :)
https://gist.github.com/iGroza/0d667a2725c8814a8b1fcacf76a1aeb0
#dev
https://gist.github.com/iGroza/0d667a2725c8814a8b1fcacf76a1aeb0
#dev
Gist
crypto.md
GitHub Gist: instantly share code, notes, and snippets.
I lost everything. It’s over.
This is my second cycle, and I fumbled it again.
Made over $5M, and instead of securing the bag and taking care of my people, I kept buying dips on big memes: popcat, giga, mumu, retardio, cult.
Then they nuked 90-95%, I panic sold the bottom, tried leverage trading - ran it up to $65K, then blew it all again. Now I’m down to my last funds, but they’re on the verge of liquidation too.
After that, I’ll be at absolute zero.
Will I have the will or energy to crawl back up? No idea.
Market chewed me up and spat me out on the curb.
#shitpost
This is my second cycle, and I fumbled it again.
Made over $5M, and instead of securing the bag and taking care of my people, I kept buying dips on big memes: popcat, giga, mumu, retardio, cult.
Then they nuked 90-95%, I panic sold the bottom, tried leverage trading - ran it up to $65K, then blew it all again. Now I’m down to my last funds, but they’re on the verge of liquidation too.
After that, I’ll be at absolute zero.
Will I have the will or energy to crawl back up? No idea.
Market chewed me up and spat me out on the curb.
#shitpost
The other day, I faced a task: to develop a UI for a bridge from SOL to EVM with a non-trivial token retrieval process. Via protocol vibes...
I turned to the brand-new CLI from Anthropic – Claude Code. But first, the key to success? Setting the right context & prompt for the LLM. Without it, you're just guessing. Trust me, architecture and constraints are a must.
Many vibe-coders think LLMs will "figure it out" on their own... but NO! 🎯 You need to guide it, otherwise it’ll wander aimlessly. I can share my findings after 1.5 years of full-time LLM dev if you're interested. Just ask!
The real MVP of my journey was the JSON with the OpenAPI spec of the deBridge API. It was a game changer. With one prompt, Claude Code generated the integration class and typed all the necessary parameters.
But then… problems started.
In addition to the API spec, deBridge has over 20 HTML pages with best practices and full protocol details. Moving all of that into the prompt context? Total headache. Losing formatting, copying content without references... it felt like "dancing with tambourines."
And then, a lightbulb moment 💡: Modern documentation is NOT adapted for LLMs. It’s time for change.
Whether you like AI or not, LLMs can drastically simplify the lives of developers. The best part? You don’t need to be a genius coder – just vibe code it! 🤖
A few days later, Andrey Karpaty (the vibe-coding king himself) posted about the same thing on X. We’re on the same wavelength!
Some of the projects already embracing llm.txt: • Svelte: The ultimate frontend framework: Svelte llms.txt
• Anthropic: For Model Context Protocol: Model Context Protocol
• viem: My crypto favorites: Viem llms.txt
Bonus: Viem's own framework, vocs, auto-generates LLM files for docs. Pretty epic.
There’s a solid guide for developers on how to prepare documentation for LLMs: llmstxt.org
But here’s the kicker: Current documentation systems still suck.
Sure, you can add a URL in Cursor, but it only parses a single URL. Subpages? Not so much. But with llm.txt, Cursor can retain ALL the context, create embeddings, and refer to the docs seamlessly. No more nonexistent methods or random parameters.
#dev
I turned to the brand-new CLI from Anthropic – Claude Code. But first, the key to success? Setting the right context & prompt for the LLM. Without it, you're just guessing. Trust me, architecture and constraints are a must.
Many vibe-coders think LLMs will "figure it out" on their own... but NO! 🎯 You need to guide it, otherwise it’ll wander aimlessly. I can share my findings after 1.5 years of full-time LLM dev if you're interested. Just ask!
The real MVP of my journey was the JSON with the OpenAPI spec of the deBridge API. It was a game changer. With one prompt, Claude Code generated the integration class and typed all the necessary parameters.
But then… problems started.
In addition to the API spec, deBridge has over 20 HTML pages with best practices and full protocol details. Moving all of that into the prompt context? Total headache. Losing formatting, copying content without references... it felt like "dancing with tambourines."
And then, a lightbulb moment 💡: Modern documentation is NOT adapted for LLMs. It’s time for change.
Whether you like AI or not, LLMs can drastically simplify the lives of developers. The best part? You don’t need to be a genius coder – just vibe code it! 🤖
A few days later, Andrey Karpaty (the vibe-coding king himself) posted about the same thing on X. We’re on the same wavelength!
Some of the projects already embracing llm.txt: • Svelte: The ultimate frontend framework: Svelte llms.txt
• Anthropic: For Model Context Protocol: Model Context Protocol
• viem: My crypto favorites: Viem llms.txt
Bonus: Viem's own framework, vocs, auto-generates LLM files for docs. Pretty epic.
There’s a solid guide for developers on how to prepare documentation for LLMs: llmstxt.org
But here’s the kicker: Current documentation systems still suck.
Sure, you can add a URL in Cursor, but it only parses a single URL. Subpages? Not so much. But with llm.txt, Cursor can retain ALL the context, create embeddings, and refer to the docs seamlessly. No more nonexistent methods or random parameters.
#dev
🔥2
yo, remember when Jupiter did its first drop and Solana's network went crazy after that? That’s when the first big memecoin boom kicked off - March to May ‘24
Meteora, don’t fumble this bounce 🚬
#shitpost
Meteora, don’t fumble this bounce 🚬
#shitpost
🔥2