Share markdown: Vibe coding a tweet
I was scrolling through twitter when i saw this post, mentioning how there wasn't a simple tool where you can easily share and edit markdown that is embedded in the url // Detect dark theme var iframe = document.getElementById('tweet-1920516917179146691-515'); if (document.body.className.includes('dark-theme')) { iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1920516917179146691&theme=dark" } This was the perfect project that the current tooling of AI agents is making really accessible and simple. I was able to quickly develop it within the day, get the first users and feedback, and get a Pull Request from another developer. I also learned a new tip.. There is a way to add URL query parameters that don't get sent to the server, that is by using hash parameters. This is an incredibly easy solution to the problem of embedding information when you don't want to involve a server. Wanna see how that looks? check out the project here.

I was scrolling through twitter when i saw this post, mentioning how there wasn't a simple tool where you can easily share and edit markdown that is embedded in the url
// Detect dark theme
var iframe = document.getElementById('tweet-1920516917179146691-515');
if (document.body.className.includes('dark-theme')) {
iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1920516917179146691&theme=dark"
}
This was the perfect project that the current tooling of AI agents is making really accessible and simple.
I was able to quickly develop it within the day, get the first users and feedback, and get a Pull Request from another developer.
I also learned a new tip.. There is a way to add URL query parameters that don't get sent to the server, that is by using hash parameters. This is an incredibly easy solution to the problem of embedding information when you don't want to involve a server.
Wanna see how that looks? check out the project here.