RSSAmplifier

Blog

Jan’s Blog – Feed

Web Development and More

jan.boddez.netRSS feed ↗15 posts

Latest posts

(untitled)

Bookmarked Better Browser Caching with No-Vary-Search – CSS Wizardry .

(untitled)

Bookmarked Sparklines voor het archief | Doe Niet Zo Moeilijk! . Ha, I was just thinking of “sparklines,” and how I may want to add them to my new “audio scrobbling server.”

(untitled)

Bookmarked https://www.kryogenix.org/days/2012/12/30/simple-svg-sparklines/ .

(untitled)

Bookmarked https://tighten.com/insights/filament-crash-course-create-a-customizable-admin-panel-in-minutes/ .

(untitled)

Finished reading De Kerkgangers by Ben Gijsemans . ★★★★☆

(untitled)

Bookmarked Error Validating Seconds in HTML5 Time Input? Just ran into this 10+ years after! [T]urns out that every number field in html5 spec is using step=1 on the input fields however, time is using step=60 [.]

(untitled)

Finished reading No One Is Talking About This by Patricia Lockwood .

(untitled)

Bookmarked https://henry.codes/writing/how-to-convert-variable-ttf-font-files-to-woff2/ . Manually downloading web fonts for use on one s own website can be a bit hit and miss. I ve previously used https://gwfh.mranftl.com/fonts , but I don t think it supports variable fonts. For those, it sure looks like downloading from Google Fonts (rather than individual foundries sites) gets me the most…

(untitled)

Drinking a Sint-Barbara Salvatoris by Brouwerij Kompel.

(untitled)

Looks like maybe my permashortlinks broke. (Not that these are ever a good idea to begin with!)

(untitled)

Bookmarked https://www.php.net/manual/en/imagickpixel.ispixelsimilar.php . Considering tuning down my scrobbles barebones album cover art to, like, 3 or 4 colors. Might have to play around with ImagickPixel::isPixelSimilar() to decide what colors to merge.

(untitled)

Bookmarked Webspace Invaders · Matthias Ott .

(untitled)

Was looking into MixRamp for proper gapless audio in MPD. The second review down the page sure came in handy, though. Looks like nobody s bothered to really fix this tool (let alone come up with a Windows version). Even found an ancient (and only slightly shady) foobar2000 DSP that seems to pick up the MixRamp tags. So much better especially for mix and live albums! than generic crossfades.

(untitled)

Been ripping my slowly growing CD collection to FLAC, just in case. And then copied everything to MP3, for on the go (or anywhere I don t need CD quality, which is pretty much everywhere). In Windows, this stores 256 kbps MP3s right next to the original FLACs: for /R %%f in ("*.flac") do ( ffmpeg -y -i "%%f" -ab 256k "%%~dpnf.mp3" ) And this moves them over to a new directory, leaving the…

(untitled)

Bookmarked https://gregorlove.com/2025/09/lessons-custom-wordpress-plugins/ . If you write a custom WordPress theme or plugin only for your site, you probably want to include Update URI: false in the header comment. This stops WordPress from checking for updates against the official directories and potentially overwriting your code.