Visual Studio Code

Visual Studio Code (VS Code) is a free, open-source code editor developed by Microsoft. It is available for Windows, macOS, and Linux and is widely used by developers for writing and editing code in a variety of programming languages. VS…

Parallels Desktop

Parallels Desktop is a virtualization software that allows users to run multiple operating systems on the same physical machine. It is available for macOS and Windows and allows users to easily switch between different operating systems and…

Composer

Composer is a dependency manager for PHP. It allows developers to declare the libraries their project depends on and installs them for you. Using Composer can save developers time and effort by automating the process of installing and managing…

Vagrant

Vagrant is a tool for building and managing virtual development environments. It is designed to make it easy to create and configure lightweight, reproducible, and portable development environments. Here are some key features of Vagrant: Virtual…
,

Complex JSON with PHP

JSON (JavaScript Object Notation) is a popular data interchange format that is lightweight, easy to read and write, and is often used to transmit data over the internet. JSON data can be complex, with nested objects and arrays, and working…
,

Working with JSON and PHP

JSON (JavaScript Object Notation) is a popular data interchange format that is lightweight, easy to read and write, and is often used to transmit data over the internet. In this tutorial, we'll go over how to work with JSON in PHP. Parsing…

iTerm

iTerm is a popular terminal emulator for macOS that provides many features and customisation options for developers. In this tutorial, we will cover how to set up iTerm for web development and some useful features that can help improve your…

How to Create a Symbolic Link

A symbolic link (also known as a symlink or soft link) is a special type of file that points to another file or directory on your system. Symbolic links can be used to create shortcuts to files or directories, or to create aliases for files…

Navigate in linux

The command line (also known as the terminal or shell) is a powerful tool that allows you to interact with your Linux operating system and perform tasks using commands. In this tutorial, we will cover the basics of navigating the command line…

Regular expressions in PHP

Regular expressions are a powerful tool for pattern matching and text manipulation in programming languages. In this tutorial, we will explore the basics of regular expressions in PHP, including how to create and use regular expression patterns,…