I hereby claim:
- I am himynameisdave on github.
- I am himynameisdave (https://keybase.io/himynameisdave) on keybase.
- I have a public key ASCl_Zfa6dYXlVzsnNxrhI8J7WxWkVPB9z8eF8tKmYQQNwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| @mixin link-underline($color: blue, $size: 2px, $duration: 0.25s, $centered: false) { | |
| color: $color; | |
| display: inline-block; | |
| position: relative; | |
| text-decoration: none; | |
| &:before { | |
| background-color: $color; | |
| content: ''; | |
| height: $size; | |
| position: absolute; |
| .link-underline(@color: blue, @size: 2px, @duration: 0.25s, @centered: false) { | |
| color: @color; | |
| display: inline-block; | |
| position: relative; | |
| text-decoration: none; | |
| &:before { | |
| background-color: @color; | |
| content: ''; | |
| height: @size; | |
| position: absolute; |
| @linkBlue: #0000ee; | |
| a { | |
| color: @linkBlue; | |
| display: inline-block; | |
| position: relative; | |
| text-decoration: none; | |
| &:before { | |
| background-color: @linkBlue; | |
| content: ''; | |
| height: 2px; |
| @linkBlue: #0000ee; | |
| a { | |
| color: @linkBlue; | |
| display: inline-block; | |
| position: relative; | |
| text-decoration: none; | |
| &:before { | |
| background-color: @linkBlue; | |
| content: ''; | |
| height: 2px; |
| @linkBlue: #0000ee; | |
| a { | |
| color: @linkBlue; | |
| display: inline-block; | |
| position: relative; | |
| text-decoration: none; | |
| &:before { | |
| background-color: @linkBlue; | |
| content: ''; | |
| height: 2px; // this can be modified based on the boldness of the font |
| a { | |
| display: inline-block; | |
| position: relative; | |
| text-decoration: none; | |
| &:hover { | |
| // more to come | |
| } | |
| } |
| a { | |
| text-decoration: underline; | |
| &:hover { | |
| text-decoration: none; | |
| } | |
| } |
| # usage: `installnode v7.0.0` | |
| installnode () { | |
| current="$(node -v)" | |
| nvm install $1 --reinstall-packages-from="${current}" | |
| nvm use $1 | |
| nvm alias default $1 | |
| } |
| // traditional | |
| someFn(() => { | |
| // anon fn code... | |
| }); | |
| // what some ppl do | |
| someFn(_ => { | |
| // anon fn code, never using the `_` argument | |
| }); |