Welcome To Devsrealm
A niche by niche web application soothed for your goals
-
How To Access Windows 10 Drive/Folder in VirtualBox
To access Windows drive or folder in your Guest OS, you first of all, install VirtualBox guest utilities: sudo apt-get install virtualbox-guest-utils You then Add a shared folder by going into: Setti...
-
PHP Pluggable and Modular System – Part 2 (Implementation) [Event Dispatcher]
In the first series of this guide, we discussed the theoretical aspect of building a pluggable system in PHP, I wrote a bit of code in that guide plus a couple of stuff you should avoid, you can lear...
-
PHP Pluggable and Modular System - Part 1 (Abstract View) [Observable and Mediator Pattern]
If there is one thing that is brutally confusing to me ever since I started coding, it would be a way to not only implement a Modular system but a way to make it extensible (adding and removing plugi...
-
Best Way To Implement a Non-Breaking Friendly URL In PHP or Laravel or Any Language
I was working on the link structure of my new Laravel app, and out of the blue I said: "What would happen if a user changes the slug of a post?" First Attempt - 301 Redirection The first solution I t...
-
HTML (plain-text) Email Template For Mautic
Mautic doesn't support sending plain-text email yet, but you can still mimic plain-text kinda email, here is an example: I'll show you two ways to use this.... Method 1: Code Mode Go-to mautic code ...
-
Creating a Tiny PHP MVC Framework From Scratch
In this guide, we would go over creating a tiny PHP MVC Framework, this would sharpen your knowledge on how major frameworks (e.g Codeigniter or Laravel) works in general. I believe if you can unders...