Skip to content

Instantly share code, notes, and snippets.

@ygoex
ygoex / NPM Scripts
Created February 17, 2023 11:13 — forked from meetKowshik/NPM Scripts
All npm scripts for development with sass
/*npm install*/
first initialize npm with package.json
npm init
then install the node sass
npm install node-sass --save-dev
if already have the package.json initialized with node-sass then just run
npm install
for install live server globally
@ygoex
ygoex / font-stacks.css
Created March 23, 2021 15:32 — forked from don1138/font-stacks.css
CSS Modern Font Stacks
/* Modern Font Stacks */
/* System */
font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
/* Times New Roman-based serif */
font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
/* A modern Georgia-based serif */
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
@ygoex
ygoex / gitconfig
Last active October 24, 2019 13:50
gitconfig
[user]
name = Yolanda Gorriz Exposito
email = TO-DO
[core]
editor = code --wait
fileMode = false
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold
@ygoex
ygoex / Bash cheat sheet.md
Last active July 10, 2019 11:13 — forked from donbrae/Bash cheat sheet.md
A bash cheat sheet

Changing directories (cd)

cd /var/www/my_website (go to /var/www/my_website directory)

cd / (go to root directory)

cd ~ (go to home directory)

cd .. (go up a directory)