I Tried to Make AI Writing Sound Human by Banning AI Words Through logit_bias
I tried to make AI writing sound more human with logit_bias, an API setting that changes how likely a model is to select specific…
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.
In Laravel applications using Inertia.js and Vue.js, there might be scenarios where you need to submit a form to a new window. Standard Inertia.js…
Beitrag lesenAI-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 lesen