
If you put in the thought and intentionality required for it, you actually get pretty great frontends from GPT-5.4! Check out some best practices here: developers.openai.com/blog/designing…
Theo - t3.gg
59.8K posts

@theo
Full time CEO @t3dotchat. Part time YouTuber, investor, and developer

If you put in the thought and intentionality required for it, you actually get pretty great frontends from GPT-5.4! Check out some best practices here: developers.openai.com/blog/designing…


wtf chrome has vertical tabs now. finally

meek mill got into YC and your ai wrapper just got demolished by a claude update

i bought a mac mini so i could have blue bubbles when texting claude and it started roasting me... try the imessage plugin for claude code today with /plugin install imessage@claude-plugins-official



I don't understand vertical tabs. Why would I want less space for the website content I actually want to look at?











ChatWise idle memory usage Before (tauri) vs Now (electron)




OpenCode is about to get more powerful with remote sandboxes I showed a brief demo before, but here's a much more in-depth demo. it's not hard to add basic support for a remote env, but handling all the edge cases like when a remote env gets deleted is difficult. especially if care about good UX You never want to lose session data. so the choices are: run the session in your env, but run all tool calls remotely. that's too complex and painful. The other way is to just let the full session run remotely, but sync back all the session data in your env. We chose this path: we built a syncing system which logs all events in a way that we can always recreate your entire session. That means the remote env could get destroyed, but we can easily restore it. it also opens up other interesting ideas which we'll be exploring