🏷️ Posts Tagged In "Code"
Playing with AI models
AI models are fascinating, I've been building a few sites as well as extensions, etc that use chatGPT, Dall-e, and others to accomplish various tasks....
Creating post previews in Strapi with Remix
Being able to preview a new post is important, and when headless, it's even more important. ...
Switching from Google Analytics to Plausible.
I've been using Google Analytics for years but decided to try new tools. But I just wanted to move onto a new Analytics tool that was faster and more private. What I eventually ended up choosing was Plausible. Â Plausible is a powerful yet simple analytics platform. The simplicity is what got me happy about it....
Generate UUIDs in PHP
I'm working on a project currently where I am using UUIDs as unique identifiers. PHP doesn't have a good UUID function for this, so I wrote one that let me generate one. ...
Using the x-requested-with header to include content on demand
I like using the same PHP script for both AJAX and non-AJAX content requests. Using one script just makes everything easier because it's only one file to update/edit and it's one more cache-able request. ...