Category: How To - Page 3
-
Block Fake Disposable Email Addresses
If you run a website that allows account signups, you’ve probably faced abuse from fake users, abusive users, fraudsters, and other malicious actors. If you look at their email addresses, you may have noticed a...
-
How to Switch PHP Versions with Laravel Valet
After some frustration trying to switch versions of PHP using Laravel Valet, I found out that valet has specific commands for running commands under an isolated version of PHP . Valet now allows you to set a...
-
Are URL Shorteners Useful Today?
Short URLs are everywhere, and I do not see them going away anytime soon. Services like T.LY , TinyURL, and Bitly have billions of short links spread out all across the web. If these services shut down, billions of...
-
How to Install ImageMagick PHP
Run these commands to install ImageMagick extension for PHP on MacOs: brew install imagemagick pecl install imagick Restart PHP brew services restart php You may need to check if imagick is loaded in your php.ini...
-
How To Find PHP.ini File
Depending on the version and operating system, PHP can be installed in multiple locations. Fortunately, you can quickly locate the PHP.ini file by running this command: How to Edit PHP.ini file Look for Loaded...
-
How to Check What PHP Modules are Installed
From the command line, you can quickly check what PHP modules are installed. List PHP Modules: This command will list out all the enabled PHP modules you currently have installed. If you would like to filter the...
-
How to use Stripe CLI with Laravel Valet
Handling webhooks locally can be a challenge. In the past, I have used ngrok using Valet Share to expose my local site to the internet. This worked but required me to either pay for a dedicated URL or update Stripe’s...
-
How to Replace Honda Pilot Console Cup Holder (2009-2015)
Over time the Honda Pilot 2009-2015 cup holders wear out and start to fall apart. The insert is made of cheap foam that is not very well designed. Fortunately, the replacement foam is easy to replace and only takes a...
-
Simple Under Cabinet Lighting
Under-cabinet lighting can improve the functionality and look of your kitchen. With today’s LED light strips , installing them is a breeze. The most challenging part is finding the power to conceal your power plug....
-
Twitter Bot
For my new quote site, AtomicQuote , I wanted to add the ability for the site to auto-tweet the most popular quotes throughout the day. I ran into a few issues and wanted to write this post to hopefully help others...