Entries by jamiegrand

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 Code is known for its fast performance, powerful debugging tools, and extensive extensibility. It includes […]

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 run Windows applications on a Mac without rebooting. With Parallels Desktop, users can install and run multiple operating […]

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 dependencies. It makes it easy to declare the libraries your project depends on and install them […]

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: Vagrant is widely used by developers to create and manage virtual development environments for a variety of projects, including web […]

,

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 with such data in PHP can be a challenge. In this tutorial, we’ll go over […]

,

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 JSON in PHP To parse a JSON string in PHP, you can use […]

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 workflow. Download and installation To download and install iTerm, visit the iTerm website (https://www.iterm2.com/) and […]

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 with different names or locations. In this tutorial, we will […]

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 in Linux. Opening the terminal To open the terminal in Linux, you can […]

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, and some of the common functions and techniques for working with regular expressions in PHP. Basic Regular Expression […]