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…
Read postBlog
Laravel, AI-assisted development, SaaS, SEO, tooling, and the parts that only show up once software is used by real people. Mostly technical, but not trapped in one narrow lane.
Continue browsing the archive.
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…
Read postAI-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…
Read postTailwind CSS is designed to include only the classes used in your project in the final build CSS file. This approach keeps the file…
Read postDual-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…
Read postThere was an article by Search Engine Roundtable stating that Bing has gained less than 1% market share since adding Bing Chat. This claim…
Read postWhen 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,…
Read postExample 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…
Read postIf 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…
Read postShould you run npm run build on your development machine and commit everything to Git or should you commit your app without those files…
Read postBefore PHP 7, error handling and exception handling were quite distinct: Exceptions (Exception Class): Exceptions were used for handling exceptional conditions in the application…
Read postIn 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…
Read postIn a multi-tenant architecture, a single instance of a software application serves multiple clients or "tenants." The term "tenant" refers to each individual client…
Read post