All Articles

Tips & tricks
Bulk delete “Zone.Identifier” Files with a Bash Trick
Ever stumbled upon those pesky “Zone.Identifier” files cluttering up your directories? Ugh, so annoying, right? That’s what I had today…

WordPress
Converting a Single WordPress Site to Multisite Using WP-CLI
Using the WP CLI command, I wanted to convert a single site to a multisite. I chose the CLI instead…

DevOps
Failed to upgrade EasyEngine!
I failed to upgrade the EasyEngine from 4.1.5 to 4.6.6 and I spent a few hours to figure out what…

WordPress
How to Deregister Gutenberg Block Styles by Finding the Style Handle
The WordPress block editor allows us, the developers, to create new block types. Now with the block.json file configuration is…
Web Design
How to Implement a Light/Dark Theme Switcher with CSS Variables
Learn how to create a light/dark theme switcher using CSS custom properties. This guide provides step-by-step instructions to create a…
SEO
Optimize Interaction to Next Paint (INP) for Better Web Performance
Google’s web performance metrics are constantly evolving to provide developers with better insights into how their websites are performing. One…
Javascript
Efficient User Input Delay in JavaScript & TypeScript
Observing keystroke activities (like keypress, keyup, and keydown) is a commonplace tactic in JavaScript to provide interactive user experiences. However,…
Javascript
Creating a Countdown Timer in JavaScript to Improve Sales and Conversions
For businesses looking to boost online sales and conversions, a countdown timer can be a powerful tool in your digital…
PHP Snippets
Generate a Random String
This function generates a random string of a specified length. It uses str_shuffle to randomize a string of all alphanumeric…
PHP Snippets
Redirect To Another Page
This function redirects the user to another page. It uses PHP’s header function to send a ‘Location’ HTTP header with…