Your AI re-introduces the exact bug you fixed yesterday.
Every. Single. Time.
cortex-mcp remembers every fix.
npm install -g cortex-mcp
Your AI re-introduces the exact bug you fixed yesterday.
Every. Single. Time.
cortex-mcp remembers every fix.
npm install -g cortex-mcp
Monday: You fix a cookie parsing bug.
Tuesday without Cortex: AI re-introduces the same bug.
Tuesday WITH Cortex: "Avoiding the cookie issue we fixed yesterday."
npm install -g cortex-mcp
Logan Kilpatrick (@OfficialLoganK)
작성자가 하루종일 'AI Studio'에서 코드 작성(vibe coding), 버그 수정 및 사용자 경험(UX) 다듬기에 몰두했다는 내용의 트윗으로, AI 개발 도구인 AI Studio의 품질 개선 및 사용성 향상 작업을 알리는 업데이트성 게시물입니다.

Still not perfect, like weird when an alarm goes off, you can’t restart music from the lock screen but must go into and hit pause(?) then play.
But discovered a lovely feature, played history. Left off partway through a playlist yesterday, played something else today then wanted to return to where I left off… Swipe right from playing ui and you get History, scroll up down and you can see exactly what you played. 👌
Tibo (@thsottiaux)
Codex의 2배 한도(프로모션)가 약 9%의 Plus 및 Pro 사용자에게 적용되지 않는 문제가 발견되어 수정되었으며, 보상 차원에서 모든 Plus·Pro 사용자의 요율 제한(rate limit)을 재설정했다고 공지했습니다. 사과와 함께 문제 해결 및 리셋 조치가 이루어졌음을 알리고 있습니다.

We caught an issue that was causing the 2X promotional increase in limits to not be applied to an estimated 9% of plus and pro users for Codex. We have now fixed this issue and are reseting the rate limit for all plus and pro users to compensate. Apologies and thank you for the
A quick bug fix for top mention sites
I found an edge case problem for my Top Sites feature of Open Mentions. If a site uses www. as part of their address, my custom SQL didn’t take that into account and filtered it as not the same site. This was because subdomains count as a different site, but the top sites drops the www. bit for clarity of listing.
The result is that the site page for such listings reported there were no entries. Opps.
I fixed that by adding a clause for such sites. After some rudimentary testing, my oversight seems to have been fixed.
#bugFix #homebrewError #SQL #topSitesMentioningUs🥳 New Kitten release
⁃ Bug fix: Kitten no longer awaits events bubbled from the client to the server.
Kitten’s Streaming HTML workflow¹ transparently bubbles events from the client to the server so you can keep all your code on one tier and stream HTML updates to the page. Anyway, so I was awaiting events while bubbling them instead of just firing them off in parallel which meant that if you had delays, etc., in some of your event handlers, the timing of other event handlers would be affected. This is now fixed so your event handlers should fire independently of each other. (Your async event handlers will continue to work as intended so you can script animations, etc., by awaiting delays within them.)
Enjoy!
💕
¹ https://kitten.small-web.org/tutorials/streaming-html/
#Kitten #KittenReleases #SmallWeb #SmallTech #bugFix #events #StreamingHTML