the worst part wasn't losing the data it was realizing i'd approved it myself 💀 full story is on my youtube channel 👇 youtu.be/5MX3sMo8H-Q #coding #ai #buildinpublic #aiagents
Jess Temporal
@jesstemporal.com
DevRel 🥑 • Author • Creator of gitfichas.com • 👩💻 myyarnstash.app • 🎙 pizzadedados.com • GitHub ⭐️ • Pythonista • games & cross stitch & knitting & 3D printing • 🇧🇷 & 🇨🇦 • she/her • married to @jairojair.com
New video is out! 🎉 so I installed #GrokBot last friday night and then had the most productive saturday I've had all year 😅 built a lil squad of 6 bots and somehow closed 17 issues and merged 11 PRs in just one project in about 6 hours 👀 link to the video in the next one, come say hi ☺️
My first app I ever released was meant as an #ACNH companion to help keep track of the collectibles. The first icon was a green square cuz I clearly can’t develop an icon myself. But yesterday it all changed! I had Grok Bot create an actual icon and now it is live!!! #buildinpublic
the entire "how do I undo this in git" decision in one question: have you pushed it yet? → no: reset → yes: revert → lost something? reflog saved you a google 👇 youtube.com/shorts/8kdq...
an AI agent deleted my whole database with one command and I let it💀 here's everything that disaster taught me about building with AI: the guardrails, the workflow, a few tips to avoid the same mistakes 😅 new video, live now 👇 youtu.be/5MX3sMo8H-Q
I let an AI agent delete my database
An AI coding agent deleted my entire database. Here's what building...
youtube.com
an AI agent deleted my whole database with one command and I let it💀 here's everything that disaster taught me about building with AI: the guardrails, the workflow, a few tips to avoid the same mistakes 😅 new video, live now 👇 youtu.be/5MX3sMo8H-Q
I let an AI agent delete my database
An AI coding agent deleted my entire database. Here's what building...
youtube.com
New video coming out tomorrow on my YouTube channel!! Hit "Notify me" so you don't miss it 👇 youtu.be/5MX3sMo8H-Q
quick git tip: git revert isn't just for your last commit pass it any commit hash and it undoes that specific one, writing the inverse as a brand new commit. your history stays intact 🧠 full short here 👇 youtube.com/shorts/Ttf9...
you committed too early but don't want to lose the work 😅 git reset --soft undoes the commit and keeps all your changes staged ☺️
I’m working on a video and I asked AI to animate an image and can someone tell me what’s going on here? Wrong answers only 🤣
you see HEAD~1 in git commands all the time, but what is it? 👀 HEAD is where you are now, HEAD~1 is the commit right before it. once it clicks, undo commands make way more sense ☺️
Made it to 300 subs on YouTube! 🎉 I’ll be celebrating with a cupcake later 🤭 I’ve been posting about #git a lot over there for the past few months go check it out: youtube.com/@jesstemporal
Whenever my phone transcribes spam calls I have a little giggle cuz would Canada post want to talk to me in Chinese??? 🤣
ai coding tools move fast and sometimes leave your repo in a state 😅 here's how i use git to undo the damage and get back to a clean slate ☺️
GitFichas is an open source project I maintain: visual git reference cards in English, Portuguese, and Spanish. What git command do you wish had a card? I’ll be back dropping new cards soon and can add your request to my list
This livestream is happening today!! I’m so excited we’ll talk about AI and how you can go about protecting your users data when you build agents!! Come hang! Here’s the link to the livestream on YouTube: www.youtube.com/watch?v=P5yf...
Vibe Check: Agents don't need your password. They need your permission.
YouTube video by Temporal
youtube.com
not me having way too much fun at work building out a demo for a livestream 👀 Stack: • #nextjs - this whole app API and frontend • #claude and #cursor - for dev • #auth0 - Auth0 for AI Agents rock • #vercel - for prod deployment w minimal dashboard interactions
typo in your last commit message? forgot to add a file? 😅 git commit --amend fixes the most recent commit without making a whole new one. just don't amend commits you've already pushed ☺️
I've barely touched my open source projects the past few months 😅 Hacktoberfest is the annual reset that gets me back into it. last year the week-by-week field notes made me actually reflect instead of just grinding PRs. thinking about doing it again this year ☺️
git reset --hard throws away your uncommitted changes for good. no undo, no take-backs 😬 here's when it's useful and when it'll burn you ☺️
After many years doing videos for work, I’ve started to invest into my own YouTube channel on my free time. And I’ve been enjoying seeing the comments and the numbers go up especially since I mostly shared git tips this year, I have so much more I want to cover 😍 stay tuned 🎉
cached CSS kept breaking my staging deploys so I set up a GitHub Action that appends a hash to the CSS filenames on every push to staging 😅 works great but I'm curious, is there a cleaner/better way to do this? 👀
setting up auth for an app usually meant bouncing between your editor and the dashboard, copying client ids and callback urls… well, not anymore 😅 new video: #cursor + the auth0 plugin does all that for you 👀 youtu.be/2Zon_SNnGkQ
Cursor Tutorial: Auth0 Setup in Python Flask
Updating old codebases usually means hours of re-configuring enviro...
youtube.com
thought you lost a commit for good? 😅 git reflog tracks where HEAD has been so you can get it back. the git safety net most people don't know about ☺️
holiday in Ontario today 🇨🇦 making the most of the final few hours of the long weekend before the work week starts back up tomorrow. rest up, friends ☺️
it's live! first 2026 long form video on my channel, undoing commits in git, is up 🎉 the "oh no i committed to main" fix, plus how to keep your work when you undo, and the safety net when it all goes wrong 👇
it's live! first 2026 long form video on my channel, undoing commits in git, is up 🎉 the "oh no i committed to main" fix, plus how to keep your work when you undo, and the safety net when it all goes wrong 👇
reset vs revert: which one should you use in #Git They both undo, but they're not the same. git reset rewrites history, git revert makes a new commit that undoes the old one, which is the safe choice on shared branches. Clip from my full video on undoing commits.