Skip to content

Instantly share code, notes, and snippets.

View yacine's full-sized avatar
🎯
Focusing

Yacine Benzerroug yacine

🎯
Focusing
View GitHub Profile
@yacine
yacine / csscomb.json
Created May 21, 2018 09:26
CSSComb config
{
"remove-empty-rulesets": true,
"always-semicolon": true,
"color-case": "lower",
"block-indent": " ",
"color-shorthand": true,
"element-case": "lower",
"leading-zero": false,
"sort-order-fallback": "abc",
"space-before-colon": "",
@yacine
yacine / bookmak
Last active June 24, 2018 20:06
Dev personal bookmark
#Pug
https://devhints.io/pug
https://codepen.io/mimoduo/post/pug-js-cheat-sheet
@yacine
yacine / gist:4bc0a2966326a816a913ab1ca9dc9454
Created July 10, 2018 19:18 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@yacine
yacine / vanilla-js-cheatsheet.md
Created February 13, 2019 15:48 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@yacine
yacine / css_debug.sublime-snippet
Created April 9, 2019 11:28
SublimeText css debug snippet
<snippet>
<content><![CDATA[
background-color: ${1:teal} ${2:!important};$3
]]></content>
<tabTrigger>_debug</tabTrigger>
<scope>source.css, source.scss, source.sass</scope>
</snippet>