Setting up proper JS and CSS minification

superhero 534120 1920

Setting up the proper JS and CSS minification can be crucial for your web site’s speed and ultimately better search engine optimization. This article will provide you with quick hints to improve your web site using JS and CSS minification. What is the importance of setting up proper JS and CSS minification What is a … Read more

Token based authentication and authorization with OAuth

authentication token

Open Authorization is commonly known as OAuth. This is an open standard for token based authentication and authorization on the internet. OAuth provides a way for third party services to use user related data without user password. Also, OAuth means additional security for user account. Let’s make things more simple. What if there would be … Read more

Enumerations in PHP 8.1 – with code example and references

Enumerations In PHP 8.1 – With Code Example And References

PHP is getting more and more features. Enumerations in PHP are one of the latest proposals. Description for enumerations in PHP is described withing this request for comments Enumerations are built on top of classes and objects. That means, except where otherwise noted, “how would Enums behave in situation X” can be answered “the same … Read more