Laravel Nova Undocumented
- Some useful links to start with
{ | |
"php.validate.executablePath": "C:\\Code\\bin\\php\\php-7.4.2-Win32-vc15-x64\\php.exe", | |
"git.enabled": true, | |
"git.path": "C:\\Code\\bin\\git\\bin\\git.exe", | |
"glassit.alpha": 220, | |
"workbench.editor.showTabs": true, | |
"editor.minimap.enabled": true, | |
"editor.codeLens": true, | |
"files.autoSave": "onFocusChange", | |
"editor.formatOnPaste": true, |
This tutorial describes how to set up database replication in MySQL. MySQL replication allows you to have an exact copy of a database from a master server on another server (slave), and all updates to the database on the master server are immediately replicated to the database on the slave server so that both databases are in sync. This is not a backup policy because an accidentally issued DELETE command will also be carried out on the slave; but replication can help in othe situations
Consider a very simple example of mysql replicatio
Note: Some of these shortcuts have been remapped for my own convenience (Preferences->Keymap). These are Mac shortcuts, just use the Windows/Linux equivalent of the Cmd/Option/Ctrl/Del keys.
####Search, Go to, Navigation ####
Cmd + P - Search file
Cmd + Shift + O - Search everywhere
(I swapped the above two recently because I use Cmd + P to search for files most of the time).
Getting started:
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins