Skip to main content

Blog

Miscellaneous articles relating to the use and development of Tuskfish CMS.

Copyright, all rights reserved.

In this collection

Tuskfish development update

I've nearly finished the native multi-lingual branch of Tuskfish. It turned out to be much more complex than I thought, touching nearly every operation. Extensive review and testing will be necessary, as it is quite a large divergence. I found myself wondering if I really want to rebase future Tuskfish development on the multilang branch or not, and the answer seems to be that I need to think about it. Maybe I'll keep it as a parallel project that I wheel out when needed, for a while. We'll see.

I will add a couple more block options for V2.1 to enable placement of a feature video block, and maybe a feature audio block as well.

I will also add a few attractive open-source themes. I always thought that everyone would want to use their own custom theme, but turns out no, most people just want something they can use out of the box. The default bootstrap starter theme is a bit grim (black and white), so I'll add a couple of nice themes you can tweak without having to replace them. Shout out to Bootswatch and Start Bootstrap for offering open source themes, thank you!

PSA: Controlling Crohn's disease with a keto / carnivore diet

If you don't have Crohn's disease you can skip this article, it's not relevant to you.

How to avoid the Microsoft 365 Family price increase

If you have a Microsoft 365 Family subscription, you probably got an email notifiying you of a 30% price increase. This is bullshit and you don't have to pay it. The truth is, you are being silently upgraded to a higher subscription tier with the same name. The new tier includes Copilot AI integration, and that's what you are being charged for on the sly. To avoid the price increase, you can opt out of Copilot integration. Instructions inside.

The COVID smell test

I thought I had the flu. But on day 5 I opened a fresh bag of coffee beans and stuck my nose in which is normally an "invigorating" experience. I couldn't smell anything. It was as if the bag was empty. After a few moments wondering what the hell was wrong with my coffee, I did a RAT test and found a very, very faint positive.

I started wondering if it knocks out your smell completely, or if it's somehow selective, and could this be used as some kind of proxy diagnostic tool? Anyway, after going through the kitchen draw, this is what I can and can't smell...

Tuskfish development update: Towards V2.1

I was tempted to call this the "2025 update" but since I usually take leave in December and spend most of it tinkering, quite likely I'll do some of this before new year or at least by the end of January. The next Tuskfish CMS release will be version 2.1. Core functionality will remain unchanged, but I will add support for blocks, and if I can sort out a couple of issues, native multilanguage. Not a crappy hacked up multilanguage, but one that is baked into the core and seamless. I'll be making use of some of the more recent language features in PHP, which will raise the minimum version required to PHP 8.3. Please note that the contemporary versions of PHP are now V8.3 and V8.4, with V8.2 now end of life.

[I have added] Optional support for ImageMagick 6

Optional support for ImageMagick V6 is now available. This gives much better quality thumbnails than PHP's native GD2 library, but at the cost of some manual configuration. You need to:

  • Have ImageMagic installed on your webserver (most hosting companies provide this).
  • Access to PHP's exec() function must be enabled (it is often disabled by default through the disable_functions setting in php.ini).
  • Swap in an alternative ResizeImage.php trait file (provided).
  • Configure the file path to an sRGB.icc colour profile on your server (you can download one if necessary).
  • Clear the image cache (html/cache), which will cause thumbnails to be rebuilt.

You can adjust the level of compression and sharpening in the trait file method createThumbnailWithExec().

[I wish I could] Improve thumbnail quality with ImageMagick

Update 2: I got annoyed and added optional support for ImageMagick V6, some manual configuration is required.

Update: The PECL extension for ImageMagick is broken for PHP 8.3. It has been busted for over a year and nobody seems to give a damn, so this work is shelved until it gets fixed.

I've never been happy with thumbnails generated by PHP's native GD2 library, so I'm adding optional support for ImageMagick in the next release. If ImageMagick is installed, Tuskfish will use it by default, and if not, it will fall back to GD2. ImageMagick is widely available on most, if not all, commercial web hosts.

ImageMagick offers two benefits over GD2:

  • It generates much better quality thumbnails than PHP's native GD2 library. The thumbnails generated by GD2 are a bit fuzzy, and larger images can actually look pretty bad.
  • ImageMagick is aware of colour profiles and will preserve colour space information. GD2 is not only unaware of colour profiles, but actually discards them, which causes colour shifts in images that can render them drab and washed out.

To keep things simple, I will only be supporting the sRGB colour profile, which is the default for the web. You should already be converting your master images in sRGB before using them on websites anyway, because browsers generally will not be able to render other profiles correctly.

Fixed my AMD Ryzen 5000x series random reboots

My Ryzen 5950x became unstable and started throwing random reboots. No errors are reported, and Windows logs just shows a kernel power loss event. The distinguishing feature is that the reboots usually happen when the CPU is lightly loaded or idle, or a few seconds after leaving a heavy workload. The machine passes stress tests without an issue. The consensus seems to be that the CPU is undervolting a bit too far under light/idle workloads. So people are experimenting with many different BIOS settings to try and fix it.

TLDR: After trying every BIOS adjustment under the sun, installing a different OS, and rotating every component bar the motherboard with old spare parts, I was left with only one option: It had to be the motherboard. So I bought a new one, and yes, everything just works great now.

Complete guide to HTTP headers

I was going to write a guide to security-related HTTP headers, but it turns out that someone has already done it. So here you go, it's worth a read. I have locked down the out-of-the box Tuskfish headers a bit tighter. The content security policy header can break a lot of stuff (read 'any inline script or style sheet') and requires manual tweaking, depending on what you're doing.

Tuskfish 2.0.7 released

Tuskfish 2.0.7 is a minor update to fix small bugs and add htmx support. Back end toggling of content on/offline now uses a htmx call to avoid reloading the whole page. This makes management easier when you have a large amount of content. The htmx library is now available in /vendor, but it is only used in the back end administrative theme.