- Tools Installation
- Install VSCode: https://code.visualstudio.com/
- Install Git Bash: https://git-scm.com/downloads/
- Install Laragon: https://laragon.org/download/
- Install Table Plus: https://tableplus.com/
- PHP 101
- Hello world
- Variables
- Conditions
class Errors { | |
/** | |
* Create a new Errors instance. | |
*/ | |
constructor() { | |
this.errors = {}; | |
} | |
/** |
#!/usr/bin/env bash | |
echo "Starting rs0" | |
mongod --replSet rs0 --port 27017 --bind_ip localhost --dbpath /Users/jovert/mongodb/rs0-0 --oplogSize 128 > /dev/null 2>&1 & | |
echo "Starting rs1" | |
mongod --replSet rs0 --port 27018 --bind_ip localhost --dbpath /Users/jovert/mongodb/rs0-1 --oplogSize 128 > /dev/null 2>&1 & | |
echo "Starting rs2" | |
mongod --replSet rs0 --port 27019 --bind_ip localhost --dbpath /Users/jovert/mongodb/rs0-2 --oplogSize 128 > /dev/null 2>&1 & |
{ | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', 'monospace'", | |
"editor.lineHeight": 26, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.suggestSelection": "first", | |
"editor.rulers": [80, 120], | |
"editor.tabCompletion": "on", | |
"editor.tabSize": 2, |
# Server side adapter
composer require inertiajs/inertia-laravel
# Install Vue.js && client side adapter for Vue.js
npm install vue @inertiajs/inertia @inertiajs/inertia-vue
Name: Lourd Rancy Guanzon | |
Position: UI / UX Designer (Remote) | |
Company: Appetiser Apps (Australia) | |
Phone Number: +639471078592 | |
Email Address: [email protected] | |
Name: Leonardo Louie Ordonez | |
Position: Software Developer | |
Company: Unosoft Inc. (QC) | |
Phone Number: 09662351750 |
Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. Just like above, the bad commit remains there, but it no longer affects the the current master and any future commits on top of it.
git revert {commit_id}'
Deleting the last commit is the easiest case. Let's say we have a remote origin with branch master that currently points to commit dd61ab32. We want to remove the top commit. Translated to git terminology, we want to force the master branch of the origin remote repository to the parent of dd61ab32:
Nginx Configuration |