This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.exclude": { | |
// Root files | |
".editorconfig": true, | |
".gitattributes": true, | |
// "**/.gitignore": true, | |
".styleci.yml": true, | |
"package.json": true, | |
// "composer.json": true, | |
"composer.lock": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************** | |
Vue Js Cheat Sheet | |
Adil Zakarya, MA | |
/*********************************************/ | |
// in HTML | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <!-- Vue JS--> | |
/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE specialties( | |
id int not null primary key, | |
name varchar(50) | |
); | |
insert into specialties (id,name) values | |
("1","Accident and emergency medicine"), | |
("2","Allergology"), | |
("3","Anaesthetics"), | |
("4","Biological hematology"), |