software engineer development experience
-
spatie/invade – A PHP function to access private properties and methods
This spatie/invade package offers an invade function that will allow you to read/write private properties of an object. It will also allow you to call private methods.
-
How to get key in a foreach loop to work using blade
foreach in Blade works the same as a regular PHP foreach. You should be able to do something like:
-
Why sending non-GET, POST, HEAD headers to nginx, 405 Not Allowed is returned.
Send non-GET, POST, HEAD headers (e.g. PUT, PATCH requests) to nginx if the return status code is http 405 method Not Allowed,
-
WebSocket server and client code examples
WebSocket server and client code examples.The ws library is used.
-
Statically compile PHP or PHP projects into binary distributions
Swoole-Cli or statically compiled PHP is a binary distribution of PHP that integrates swoole, the PHP kernel, PHP-CLI, PHP-FPM, and several popular extensions.
-
How to limit the number of login attempts of wordpress
Another effective security method is to limit the number of login attempts.
-
How to Change the WordPress Login Page url?
Change Your WordPress Login Page with a Plugin The most common and probably easiest way to change your WordPress login URL page is by using a free plugin like WPS Hide Login, which more than 800k users actively use.
-
What is the wordpress login url?
How to Find Your WordPress Login Url: The WordPress login page can be reached by adding /login/, /admin/, or /wp-login.php at the end of your site’s URL.
-
Use WebHint to review and improve your website
Webhint is a customizable linting tool that helps you improve your site’s accessibility, speed, cross-browser compatibility, and more by checking your website http header and html code for best practices and common errors.
-
How To Configure OCSP Stapling on Nginx
Introduction OCSP stapling is a TLS/SSL extension which aims to improve the performance of SSL negotiation while maintaining visitor privacy. Before going ahead with the configuration, a short brief on how certificate revocation works. This article uses free certificates issued by StartSSL to demonstrate.
-
How to terminate the JavaScript script running?
How can exit the JavaScript script like PHP’s exit or die? Sometimes I need do this.
-
How to install nginx on amazon linux
If you’re using AWS Linux2, you have to install nginx from the AWS “Extras Repository”. To see a list of the packages available:
-
Apple favicon Apple-touch-icon usage details
On iPhone, iPad, iTouch Safari, you can use the Add to Home button to add websites to your home screen. Apple-touch-icon is a private label for IOS devices, and if the corresponding apple-touch-icon tag is set, the icon added to the home screen will use the specified picture. Add the following code to the region.
-
How to list files recursively and sort them by modification time?
How do I list all files under a directory recursively and sort the output by modification time?