Awesome!
@johnnybuilds
Dev sharing brass tacks & the nitty gritty #buildinpublic π― Only posting bangers! Currently building the publishing platform for live coding at https://codecook.live Also: π https://publicbuilders.org π https://johnnybuilds.com
Awesome!
Beyond simply copying and pasting the url, I've decided on two additional use cases for sharing from my platform:
- Republishing on other publishing platforms (Medium, Hashnode, etc)
- Republishing on microblogging platforms (Twitter/X, Bluesky, Threads)
CodeCook.live is a publishing platform. First up, I simplified the buttons on the userβs list of sessions:
β’ Copy link (the most common way to share)
β’ Share button (to open the dialog we are about to build)
β’ Go Live (for starting a CodeCook live code session)
You can also follow along at codecook.live/johnnybuilds... where Iβve enabled chat.
I'm starting up a new CodeCook session on rethinking the traditional share dialog for sharing content. Follow along on this post thread as we explore how I can make sharing better on my publishing platform for live coding. #buildinpublic
If you prefer to read this CodeCook session in blog post format, check it out at codecook.live/johnnybuilds...
And with that our projects page looks much nicer!
As a bonus, I added a button to the `EditProjectForm` to allow people to easily generate a new screenshot for their project using this same function.
Then I use the utility function in my `createProject` server action to capture the screenshot and upload it to S3 at a url keyed to the username and project id. You can see the code at codecook.live/johnnybuilds...
Iβve done this sort of thing before. We can use Puppeteer to capture a screenshot of a specified webpage by navigating to its URL and rendering it in a headless browser. I make a simple utility function to do this: github.com/johnnybuilds...
The first thing I notice is that we could have images for the projects. We allow you to upload screenshots after you import your project, but people might be likely to miss that. What if we made it automagic?
Iβm starting to share this little project Iβve been working on and one thing that stands out to me is that the Profile and Project pages are a bit plain. I'm going to share my progress here in this thread. As a starting point, here is what the profile page looks like right now. #buildinpublic
Iβm starting to actually share this little project with people now and one thing that stands out to me is that the Profile and Project pages are a little plain. As a starting point, here is what the profile page looks like right now.
You can check out the session where I added chat to CodeCook in a session on CodeCook at codecook.live/johnnybuilds...
Finished adding chat to CodeCook. Looking forward to my next live code session be a little more "live" #buildinpublic
Next up, I'm going to add a way for anyone to join a chat as a guest. Iβm actually publishing as I go on codecook.live/johnnybuilds... as well, where you can see my efforts happen live. Hopefully I can get the chat fully working soon. #buildinpublic
My prompt to Cursor: I want to refactor the chat interface to be a twitch chat drawer on the right that pushes the content over. It takes a quite a few prompts and ultimately actual manual coding (π± the horror!!!) to get it right. github.com/johnnybuilds...
In my last session on my publishing platform live coding, I started to add chat. Now Iβm going to pick up from where I left off, starting with a UI refactor. Hereβs a screenshot of where weβre at.
Renewing another live coding session on where I finish adding chat. Follow along at codecook.live/johnnybuilds... with any luck youβll see a chat window show up there at some point during the session.
Thanks! I've got a waitlist up at codecook.live
I'm going to work on adding chat to CodeCook so I'm starting up a live session (the first ever!) Unfortunately it wonβt have chat because thatβs what I'm building π codecook.live/johnnybuilds...
You can see the chart at publicbuilders.org/xvb
I've been tracking follower growth of 100+ #buildinpublic accounts for a few months now. Originally, Bluesky was the clear leader for getting followers, especially for those that donβt already have a big audience. Unfortunately, π has caught back up. I'm still hopeful for π¦ but it is concerning
I piece together icons from free icon sets like lucide and hero icons
Iβve got live coding working on my publishing platforming for live coding. Iβm thinking of calling live coding for introverts. I also have no idea what Iβm doing π but its fun as hell #buildinpublic
The first live session of CodeCook is unfortunately just me on localhost listening for commits to CodeCook. #livecoding
Iβd venture to say Blueskyβs API if fucking excellent actually
The final episode of Severance Season 1 is one of the biggest payoffs to a season of TV that I can think of.
Cook a little bit with v0.dev
Instead of writing tests when starting a project, go all in with strict typescript interfaces. No any! With Cursor, it is much easier to enforce. Once you've baked long enough and want to make sure you don't break stuff, add tests. Puppeteer can record clicks and Cursor can scaffold up your tests.