Category: article
CodeIgniter is a real simple PHP framework without additional bloat. It is really a PHP developer friendly framework, and nothing more than that. It is not pretending or trying to be anything other than that and this makes it great for developing robust web applications if your base technology is PHP.
Read MoreOn October 21st 2024 Next.js version 15 was released, and this is something worth looking into if you are a web developer. Although this represents a major new version of Next.js, unlike previous versions ( like 13 or 14 ), version 15 actually does not change too much, but these upgrades are nonetheless extremely important.
Read MoreTo create encapsulation of code in Vanilla JavaScript is not so easy as it is with programming languages like Java or Python, for example. For this reason and purpose, in JavaScript we can use the Module pattern. Module pattern can also be used as a singleton object where only one instance of the module exists. We can define Module pattern in various ways, but the way I did it here and the most simple way to use and understand will be presented in this article. I will be using ES6 specification of JavaScript and IIFE ( Immediately Invoked Function Expression ) as this is the most uniform way to do it.
Read MoreWhen you define a theme.json file, you can define global settings for your overall look and feel with it, such as color palettes, font sizes or layout options. So you as a WordPress / PHP developer use theme.json file in order to configure all these variables for the whole app. This means you can set default values that apply across your entire site, ensuring a consistent look and feel, for example you can set a base font color for the whole website.
Read More