I created TypoSnap, an AI-powered Text Correction tool with which you can simply highlight some text that you just typed, press a keyboard shortcut and the tool will fix your spelling and grammar.
🫰Snap! Typos gone
@jamannnnnn Alright, interesting! But that would also mean that in server components, I'd now use:
const [{ id }, locale] = await Promise.all([params, getLocale()]);
instead of just:
const { id, locale }= await params;
Hey @jamannnnnn, I saw the following in the documentation. await getLocale() and useLocale() seem great to me! But I was wondering, if I already pass params to a component for something else, would it be better to get the locale directly from the params? Or use such a function?
@rauchg@timneutkens I've been searching X and Google every single day over the past 2 weeks to see when Next.js 16.3 is released.
Please, release it already! 😄
I've been using GPT-5.6 Sol over the last couple of days to build out a new app for automating Scrum issues to GitHub and Azure DevOps and it has been great!
It tackles almost anything I throw at it. It keeps going until it is done. Love that!
Hey @theo! I've been watching almost all of your videos over the past couple of months.
You really inspire me and I really enjoy your content (although the videos are a bit long sometimes). Keep up the good work! It's always a joy to watch them, mainly because of your personality.
I started building Scrum Automation in January, worked on it for 4 weeks, then left it untouched for months.
Picked it back up in July and finally finished it.
The easy part was generating sprint plans with AI.
The hard part was making everything sync reliably with GitHub Projects and Azure DevOps Boards. Different data models, parent-child relationships, custom fields, etc.
Biggest lesson: an integration isn’t finished when the API call succeeds. It’s finished when users can trust what happens after they click the button.
Scrum Automation turns a sprint objective into editable PBIs, user stories, tasks and acceptance criteria, then syncs them to your board.
Proud to finally ship it:
https://t.co/S4MUFHwUnu
State belongs to one component?
useState.
State shared by nearby components?
lift state.
Stable app-wide value?
Context.
Complex/frequent shared client state?
Zustand.
Server/API data?
React Query or Server Component fetch.