Skip to content

Instantly share code, notes, and snippets.

View Baronsindo's full-sized avatar
🎯
Focusing

Baronsindo

🎯
Focusing
View GitHub Profile
@Baronsindo
Baronsindo / README.md
Created March 4, 2024 13:40 — forked from ullaskunder3/README.md
Detail flutter installation without android studio just using cmdline-tools, git, cmd
@Baronsindo
Baronsindo / specialties.sql
Created January 19, 2020 15:26
Medical specialties list in SQL
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"),
@Baronsindo
Baronsindo / settings.json
Created February 28, 2022 15:25
Laravel VSCode settings to only work with the files you actually need to see.
{
"files.exclude": {
// Root files
".editorconfig": true,
".gitattributes": true,
// "**/.gitignore": true,
".styleci.yml": true,
"package.json": true,
// "composer.json": true,
"composer.lock": true,
@Baronsindo
Baronsindo / Vue Js cheat sheet.js
Created March 20, 2020 23:12
Vue Js cheat sheet, written in moroccan darija for moroccans, starting to use Vue Js, i wroth that as a note when i started learning Vue Js.
/********************************************
Vue Js Cheat Sheet
Adil Zakarya, MA
/*********************************************/
// in HTML
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <!-- Vue JS-->
/*