Nick is an experienced full stack web developer, and love photography
What is $PATH? PATH is an environmental variable in Linux and other Unix-like operating systems like Mac that tells the shell which directories to search for executable files (i.e., ready-to-run programs) in response to commands issued by a user. How to see the path content open the shell or terminal and add the following code: [crayon-6786afb53326f286614053/] Add the
Gulp is a cross-platform, streaming task runner that lets you automate many development tasks. At a high level, gulp reads files as streams and pipes the streams to different tasks. to use Gulp, you need to first install the gulp dependencies package and add the gulpfuke.js file into the root of the project. [crayon-6786afb533874884262271/] Above
what is it? when you want to record the current state of the working directory, but want to go back to a clean working directory or switching the branch without committing any code and losing any file. The command saves your local modifications away and reverts the working directory to match the HEAD commit. How to use
What is it? Choosing a commit from one branch and apply it to another. without merging all the changes. How to do that? first, checkout to the destination branch [crayon-6786afb5349c4574641435/] then find the commit hash you want to use and add use the following code to apply that into the current branch: [crayon-6786afb5349c9007621921/] what about
cssphp is a cool tools to compile SCSS file in PHP. SCSS is a CSS preprocessor language that adds many features like variables, mixins, imports, nesting, color manipulation, functions, and control directives. scssphp is ready for inclusion in any project. It includes a command-line tool for running the compiler from a terminal/shell or script. How to use
A README is a text file that introduces and explains a project. It contains information that is commonly required to understand what the project is about. It should be in the root of the project Why should I make it? Other developer will likely have regarding how to install and use your project and also how to
composer/installers is for PHP package authors to require in their composer.json. It will install their package to the correct location based on the specified package type. website: Example of the composer.json file in the template folder add the following code to the root of the template folder with the correct name and update the type to