On October 20, 2024 at 14:53

Built this bench for a local cold plunge spot as a weekend project with the kids. Really happy with the wider top — it makes the seating more comfortable and provides more space for the gear.

On October 19, 2024 at 10:16

I have this mystery with an Ubuntu Wireguard client behind a LTE internet which disconnects and never re-connects whenever the Mikrotik router looses its ISP DHCP lease. The PersistentKeepalive is configured everywhere. Worth noting that the Mikrotik is a member of the same Wireguard network and that connection is not impacted.

On October 17, 2024 at 19:39

During my research for the @wpelevator domain name I created list of various WP brand ideas. Here are two more domains that are still available — UncoverWP-com and UnwrapWP-com. Feel free to use them for your project!

On October 17, 2024 at 13:48

Today I learned that the GitHub Checkout actions sets the http.[..].extraheader config flag which silently applies to all git commands and prevents the use of any other tokens. Even with all my effort to isolate the CI tasks from the runner environment, this one config leaked through…

On October 15, 2024 at 13:48

Tried Windows for gaming — Xbox controllers randomly stop connecting, windows update in the background makes everything slow. Launch Steam which launches EA launcher which maybe self updates and asks to login again. Whaaaat?

On October 14, 2024 at 09:24

Responded to @kasparsd:

The patch applied to SCF simply clears out the $_REQUEST global variable that would be available to any such callback function like it already did with $_POST variable before the change.

On October 14, 2024 at 09:24

The ACF vulnerability that is "fixed" by the Secure Custom Fields plugin is not an actual vulnerability. The updated code path gets executed only if:

1. You're using ACF to define custom post types or taxonomies,
2. AND an administrator-level user has specified a custom metabox callback function that (a) already exist in your codebase and (b) is somehow malicious.

On October 10, 2024 at 13:48

The complexity of isolating or scoping PHP dependencies is the main reason why WordPress developers don't rely on re-usable packages. Ideally, this would be solved at the Composer level like NPM does it for Node.js. Like PHAR but for libraries.