Skip to content

Instantly share code, notes, and snippets.

@dek4nice
dek4nice / .bash_d3_aliases
Last active April 12, 2022 06:35
d3 bash aliases
# .bash_d3_aliases
# You may uncomment the following lines if you want `ls' to be colorized:
# some more ls aliases
if [ -x /usr/bin/dircolors ]; then
export LS_OPTIONS='--color=auto'
eval "`dircolors`"
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -laF'
alias la='ls $LS_OPTIONS -lAF'
@dek4nice
dek4nice / multiple-blocks-in-jade-mixins.pug
Last active October 15, 2017 14:46
Multiple blocks in Jade/Pug mixins
//- Multiple blocks in jade mixins? #1693
//- https://github.com/pugjs/pug/issues/1693
//- [Issue on github]
//- https://github.com/pugjs/pug/issues/1693
h2 Issue
p
a(href='https://github.com/pugjs/pug/issues/1693' , target="_blank") Multiple blocks in jade mixins?
hr
## FILL ##
fill Sets fill color of the shape.
fill-opacity Sets fill opacity of the shape.
fill-rule Sets fill rule of the shape.
** example **
fill: #ccc;
fill: rgba(0,0,0,.5);
fill: red;