Latest Posts

GuideMacOS
2

Brew postinstall node Error : “post-install step did not complete successfully”

Introducing “Brew postinstall node” The process of installing Node.js on macOS via the “brew postinstall node” command is generally uncomplicated, though we can delve into the specifics of that in a separate piece. Nonetheless, it is possible to encounter an error during the installation of Node.js using Homebrew. Specifically, you may receive an error message…

Programming

PHP Sessions

What is PHP Sessions ? When creating a website that requires a user to login, PHP sessions is a very useful function that allows you to store the user’s information on the server for later use. However, PHP sessions is only temporary and will be delete once a user leaves the website. For example, you…

Tips & Tricks

MySQL Annoying Warning Beep Sound

Every time when I type in a wrong MySQL command at the console, there’s a very annoying beep sound coming out from my laptop and it is LOUD!. I keep looking for solutions on the Internet and found out that I’m not the only person who tries to disable the warning beep sound. After sometime,…

ProgrammingTips & Tricks

Date/Time in PHP

Here are some of the examples on how you could get the current date or time in PHP. We will walkthrough the basic commands or codes where we can set the timezone in PHP and get the current date and time based on the current timezone. Timezones You can see what is the timezone your…

ProgrammingTips & Tricks

What is PHP null coalescing operator (??)

Introduction In the world of web development, PHP remains a popular choice for building dynamic and interactive websites. To streamline coding and enhance the readability of PHP scripts, developers often rely on various operators. One such operator that has gained prominence in recent years is the PHP Null Coalescing Operator, denoted by ??. In this…