Ethereum whitepaper
by mishaderidder.eth12633 🥝3yethereum.org
Bitcoin: A Peer-to-Peer Electronic Cash System
by 0x00Fd...B8D8183 🥝3ybitcoin.org
@timdaub.eth: Kiwi Rewards launches with 50 USDC prizes for quality posts
by timdaub.eth12173 🥝1yfarcaster.xyz
pichi@pichi

The Unwritten Rules of Farcaster: You’ve Got to Contribute Farcaster is in a constant state of flux. The team is always experimenting, and the meta is always changing. This makes it hard for new folks to find their place. The Leaderboard is not helping. Many casters are using it as their metric for success here, and it’s measuring the wrong things. Turn off notifications for it and do not let it dictate your worth or how well you are doing. If you want to do well, you have to do one thing: contribute. Content is not the only way to contribute, but it’s going to be the most noticeable this summer. When I joined Farcaster, it was drilled into my head that it was a text-based social network, and I fought that for a long time as an artist…but things are about to change. With the upcoming push for video, Farcaster may be graduating from cozy corners to look a lot more like traditional social media but with a Web3 backbone. Don’t believe me? Look at the leaderboard and see what’s cashing in. In this new era, content may be king. Find your niche, show off your whole authentic self, and you may be able to rise above the noise. But if your strength isn’t in creating, you still need to find a way to stand out. ✎﹏Become a Collector and Curator If you can’t create your own content, cheerlead those who do. Highlight underrated creators. Look for hidden gems on the network. Find artists, writers, photographers who need a boost. Buy their work. Show off your awesome collection. Tell people why you bought it and support it. Why is an article worth reading? What speaks to you about a piece? Help curate the content you want to see more of and things that inspire you. ✎﹏Build Cool Shit Dust off your coding skills and build some mini apps. Find a v1 frame that was awesome and recreate it as a mini app, especially if the original developer has moved on. Vibe code away and build something. Mini Apps get noticed and highlighted by the team and other developers. ✎﹏﹏Build Community If you can’t find a tribe here, build your own. Start your own channel. Start your own group chat. Make your own cabal. Bring your friends from other platforms and give them a place to land. Communities and friendships are the backbone of what makes Farcaster special. Most of us want to see them thrive and evolve. If you can’t find a cozy corner, make one. ✎﹏﹏Become an Enthusiast Participant Maybe none of the above is for you, and that’s okay! Reply. Guys do really well on Farcaster. There is value in making connections and friendships by talking to people authentically. Join audio spaces. Go to IRL events. Host spaces and IRL events if none are nearby. Give developers great feedback about their products. Compliment art and photos you like. Ask thoughtful questions. Seek out people looking for feedback (but avoid engagement bait!) and jump into conversations by putting your best foot forward. No matter how you choose to contribute, it’s going to take work, time, and effort. It won’t happen overnight, but you will find your place if you put in the energy.

farcaster.xyz
by @pichi54 🥝1yfarcaster.xyz
0xdesigner@0xdesigner

13 prompting techniques for better vibe coding. small changes that yield massive performance improvements 🧵👇 1. if you're using anthropic models, you can use hard-coded "magic words" in your prompt to increase the token budget. > think > think hard > think harder > ultrathink 2. when role assigning, spell out responsibilities, tasks, and expected output. don’t rely on titles the way most do with writing tasks. ex: ❌ “you are a senior UI engineer that builds world-class, award-winning front-ends.” ✅ “you are a UI engineer responsible for designing, building and organizing reusable UI components. your job is to document all user stories and only build or refactor components to satisfy the user stories.” 3. add context dumps and information about the situation to the beginning of a prompt, and the task request at the end. research shows LLMs attend most to tokens near the start (and end) of long prompts. add details about the app, the end‑user, the problem your product is solving, your lack of technical skills, etc. the model provider is more likely to “save” this information and reference it in follow‑up requests, and the agent is more likely to stick to the directive. 4. not every directive needs a thorough prompt. when you get stuck (or lazy), sometimes “make it better” yields unexpected wins over a 1 000‑word context dump. when in doubt, use the socratic method with reasoning models—start with a question (i.e. "how would you approach this?", "what do you think?"). or ask it to ask you questions (i.e. "what do you need from me to feel 100% confident you can build this?"). research shows iterative Q‑and‑A elicits more precise output and reduces hallucinations. 5. if you're cost-sensitive, you can turn a cheaper non-reasoning model (i.e. gpt 4o, sonnet 3.5) into a reasoning model by ending your prompt with "think step by step..." 6. when something goes wrong, revert your changes and update the original prompt with additional context addressing the issue you observed. it’s always cheaper (time and money) to restart than brute force prompting. but if you insist on trying to fix an error, always ask it to determine the underlying root cause: "trace the full user flow and identify where the issue originates. think deeply about the **root cause** and treat the symptom as a clue, not the target." 7. fill the gaps by asking the model to reflect on its work. after a task is completed, ask it to criticize itself. here's a great prompt i stole from @shawmakesmagic: "Please write a SCATHING review of my codebase -- everything that's wrong with it, in what ways it is badly implemented, larp code, stubs, demo and not production ready, etc. Catalog every weakness and explain why it's bad. Then write a detailed technical implementation plan on how to fix it." and then ask it to implement its solution. it's best to do this no more than once or twice before it starts inventing critiques. 8. know every model's strengths. here's where i've personally found the most success: > o3 = planning, task breakdowns and debugging > sonnet 4 = specific, precise execution tasks > gemini 2.5 pro = when you have wireframes or mockups, also for specific execution tasks > opus 4 = large tasks or refactors don't be afraid to switch models or ask different models attempt the same task. 9. know every platform's strengths. every vibe coding platform has a highly researched, battle-tested system prompt that shapes the models behavior more than your own prompts. here's where i've personally found the most success: > lovable/v0 = reliable, consistent front-ends > replit = python apps and backends fast (also the best vibe coding mobile app) > cursor/windsurf = good for everything, but best for using MCPs and tool calling > claude code = when i'm starting with or refactoring an existing codebase you can also push a project to github and switch from one platform to another depending on what your current task is (i.e. create a working prototype in lovable and refine the back-end in claude code). 10. before asking the model to do anything, present your task and ask it to decompose it. if you ask for a task outright, it's more likely to start working and lose track of the directive. instead, try this: "before starting this task, break it down into it's smallest components and list out the sub-tasks." the list it outputs will give it a to-do list that it can refer back to as it progresses and lowers the cost. 11. if you know what you want, you're guaranteed a performance lift by giving it examples or code snippets (or asking it to find examples before starting). research shows examples boost performance more than fine-tuning. whether its API documentation, component functionality, code structure and style, response formats, etc. one example is good. many examples is better. 12. when giving context, references or examples, you should speak the language of LLMs. most coding models are most comfortable using the formats they're trained on. you can boost the model's understanding by providing documentation in markdown and presenting codebases in xml. use tools like gitingest to convert github repositories into markdown or repomix to convert to xml. always look for llms.txt from api providers. 13. give the same prompt to every model to find the "majority vote" for a solution. once you have multiple code outputs from each model, find where the most overlap is and commit to that direction. this could be reviewing file diffs, a visual vibe check for UI output, asking different reasoning models how they would fix a bug, etc.

farcaster.xyz
by mishaderidder.eth12633 🥝1yfarcaster.xyz
The End of Serious Business Modelsauditless.com
The End of Serious Business Models
by auditless.eth633 🥝1y
Lens Builder AMAbloomers.tv
Lens Builder AMA
by mishaderidder.eth12633 🥝1y
Crypto Market Recapinvestingnews.com
Crypto market recap
by @crazygamer16352 🥝1y
Introducing Gnosis 3.0gnosis.io
Introducing Gnosis 3.0
by macbudkowski.eth5759 🥝2y
Using Portal network protocol for history-expiry
by mishaderidder.eth12633 🥝1yethresear.ch
@sterlingcrispin
@sterlingcrispin

Low liquidity coins on automated market makers with exponential price curves are shitcoins. You can call them Creator Coins, Culture Tokens, Internet Capital Markets, Music Tokens, AI Tokens, or Memecoins, but it won't change the toxic fundamentals. It's a zero sum PvP game of musical chairs. Nobody leaves with more than they came with unless someone else is losing. And retail gets rinsed by snipers, bundlers, coordinated pump and dumps, FNF groups, and industrial scale autonomous trading bots. Repeatedly pretending you don't know that is disingenuous, delusional and at best naive for anyone who's been in crypto for more than a year to suggest otherwise. You can't just rename "minting dogshit with no liquidity and putting it in a Uniswap pool" to Creator Coins and expect the outcome to be any different without at least trying to alter the tokenomics, or at least some kind of flywheel, to prevent the obvious outcome. 99.99999% of tokens like this go to zero with haste, anything that survives for more than a year is an extremely rare exception to the rule. I"m quoting Coop directly here, but really I'm talking to everyone making new token launchpads and shipping the same product over and over and over again promising different results. Also talking to anyone buying these coins and professing that, "Bro. I swear bro this time it's different. They're culture coins, creators bro. I swear bro, this time it's different. No no, there's an AI. You don't get it. The token is for a song and you're early to the song. No bro trust me. This is the future. It's not like literally every other coin with the exact same tokenomics. This time it's different bro. Buy my bags bro please. Please buy my bags. I am crying, pissing, and shitting in my pants bro trust me." And to be clear, sometimes I like trading shitcoins. It's occasionally fun to light money on fire trying to hit a 20x. But I know what game I'm playing. And I'm not flooding the timeline trying to convince anyone it's not a toxic hypercasino hellscape.

Tweet image
x.com
Manifesto for Future AIsyoutu.be
Manifesto for Future AIs
by rvolz.eth1404 🥝1y
Farchive - Download your Farcaster archive
by timdaub.eth12173 🥝3yphyles.app
More