Blog
Tips and tricks for Junior PHP Web Developers
(last updated 04 Oct 2020) Here ill shares some simple tips and tricks that I’ve learned as a Junior PHP Web Developer. And the list… Read More »Tips and tricks for Junior PHP Web Developers
Progress bar while importing huge .sql file
The last time I had to import a dump file with a size of 6 GB, it felt like an eternity. I sat there, staring… Read More »Progress bar while importing huge .sql file
PHP: Alternative syntax for control structures to use when embedding PHP within HTML
In PHP, you can utilize the alternative syntax for control structures, which is especially useful when embedding PHP within HTML. Here’s a quick rundown: if… Read More »PHP: Alternative syntax for control structures to use when embedding PHP within HTML
How to remove accidentally committed files from git
Ah, the classic “Oops, I did it again!” with the .idea folder, huh? 😅 Happens to the best of us. It’s like a rite of… Read More »How to remove accidentally committed files from git
Running Docker and Docker Compose commands without sudo
Running Docker and Docker Compose commands without ‘sudo’ is a common request, especially for development environments. Here’s how to set it up
My Short Path for Creating a Gitlab Project
Many times i want to quickly create a project in my Gitlab repo while creating new plugin/script for WordPress. These command line instructions safe a… Read More »My Short Path for Creating a Gitlab Project
EquationCraft for children added to Web Projects
Welcome to EquationCraft, your ultimate tool for creating and generating custom math exercises. Whether you’re a student seeking more practice or a teacher preparing worksheets.… Read More »EquationCraft for children added to Web Projects
Traversing Multidimensional Arrays in PHP: A Practical Guide
PHP arrays are particularly versatile and capable of storing multiple values of different types. They can also be nested within one another to create multidimensional arrays. This guide will show you how to effectively traverse multidimensional arrays in PHP, with a particular focus on locating specific values.
Mobile-First Approach: Modern CSS Media Queries for Responsive Design
In the world of web design, responsiveness is no longer a luxury but a necessity. With the proliferation of digital devices sporting various screen sizes,… Read More »Mobile-First Approach: Modern CSS Media Queries for Responsive Design
Ultra lazy script to install and set up Web dev env. Apache with PHP 7.4 and 8.1 in Ubuntu 20.04+
This is my list/script with commands that permit me to install very quickly PHP 7.4 and 8.1 on a new machine. My pref dev environment… Read More »Ultra lazy script to install and set up Web dev env. Apache with PHP 7.4 and 8.1 in Ubuntu 20.04+
Bash script to create PHPStorm shortcut and symbolic link in Ububtu
In this bash script file, the PHPSTORM_PATH variable is defined at the top of the script and is used to define the path to the… Read More »Bash script to create PHPStorm shortcut and symbolic link in Ububtu