projects
Project files from my videos
How to update your WordPress password manually via the database
Easily updating your WordPress password is a crucial step when it comes to securing your website. Have you ever forgotten your WordPress password? Don't worry, it happens to the best of us. To reset it, you can manually update it via the MySQL / MariaDB database. This can be achieved easily by execu..
Removing classic-themes.min.css from WordPress
Since WordPress version 6.1, the classic theme has included a "wp-block-button__link" CSS class that has been breaking many WordPress website's buttons. Here's a quick fix for everyone to use that will allow you to dequeue classic-themes.min.css. All you need to do is add the below line to your them..
PHP Laravel Package for Cloudflare’s Turnstile Captcha Service
Cloudflare is a global network designed to make everything you connect to the Internet secure, private, fast, and reliable. I was looking to implement Cloudflare's capture service, Turnstile, and began looking for a PHP Laravel package. There wasn't one available, so I made a my own Laravel packa..
Easy Way To Add a User in Laravel
Laravel is one of the most popular PHP frameworks used for web development and API's. In this article, I will show you how to add a new user in Laravel via Tinker with just one line of code. Sometimes when you're building a new project or debugging an existing one, you need a quick way to add a n..
How to get your latest YouTube video with a simple WordPress plugin
WordPress is one of the most popular blogging platforms and with its huge following of users, it's no wonder that there are tons of plugins to make it even better. One such plugin is "Latest YouTube Video". This plugin saves your recent YouTube video by copying the embed code onto your WordPr..
Easily Create a Button Spinner in Javascript & CSS
Adding a spinner to inform the user to wait is a great UX tool. It can be used on buttons or other elements to educate the user about a possible wait time. The best part is that you don't need another library to install to be able to do it. It's something you can accomplish with some basic JavaScrip..