My First Week With GPT-6 Astra
GPT-6 Astra was my main Codex driver for the last week, and I am back on GPT-5.5. That sounds harsher than my actual opinion…
Beitrag lesenBlog
Ich schreibe über Software, KI-gestützte Entwicklung, Laravel, SaaS, SEO, Tooling und alles, was sichtbar wird, wenn Software im Alltag genutzt wird. Meist technisch, aber nicht auf ein Thema beschränkt.
Weiter im Archiv.
AI-Assisted Coding is about understanding how AI thinks and behaves. CodeGut offers a unique perspective on the collaboration between humans and AI in the realm…
Beitrag lesenTailwind CSS is designed to include only the classes used in your project in the final build CSS file. This approach keeps the file…
Beitrag lesenDual-use Controllers in Laravel Dual-use controllers in Laravel serve a dual purpose: they return/render an Inertia/Vue page when accessed normally and JSON data when…
Beitrag lesenThere was an article by Search Engine Roundtable stating that Bing has gained less than 1% market share since adding Bing Chat. This claim…
Beitrag lesenWhen you return an Inertia response using Inertia::render(), it doesn't return a standard Laravel response object directly. Instead, it returns an instance of Inertia\Response,…
Beitrag lesenExample Scenario: Consider a Card.vue component with default Tailwind CSS styling. <template> <div class="bg-gray-200 p-4 rounded"> <!-- Card content --> </div> </template> When attempting…
Beitrag lesenIf you encounter the following error during a deployment in Laravel Forge: git@github.com: Permission denied (publickey). fatal: Could not read from remote repository. Please…
Beitrag lesenShould you run npm run build on your development machine and commit everything to Git or should you commit your app without those files…
Beitrag lesenBefore PHP 7, error handling and exception handling were quite distinct: Exceptions (Exception Class): Exceptions were used for handling exceptional conditions in the application…
Beitrag lesenIn Vue, the <template> tag itself is not considered as a "root element" in a component. It's part of Vue's template syntax and serves…
Beitrag lesenIn a multi-tenant architecture, a single instance of a software application serves multiple clients or "tenants." The term "tenant" refers to each individual client…
Beitrag lesenIn Bootstrap 5, there's a change in how data attributes are named. Example: In Bootstrap 4 and earlier, to activate a modal, you'd use:…
Beitrag lesen