alias ng="npm list -g --depth=0 2>/dev/null"
alias nl="npm list --depth=0 2>/dev/null"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//https://www.npmjs.com/package/scrollmagic-plugin-gsap | |
import * as ScrollMagic from "scrollmagic"; | |
import { TweenMax, TweenLite, TimelineMax, CSSPlugin, ScrollToPlugin, Draggable } from "gsap/all"; | |
import DrawSVGPlugin from "../../vendor/gsap/DrawSVGPlugin"; | |
import { ScrollMagicPluginGsap } from "scrollmagic-plugin-gsap"; | |
ScrollMagicPluginGsap(ScrollMagic, TweenMax, TimelineMax); |
###install oh-my-zsh https://ohmyz.sh/#install
$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
reference default vimrc here
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## old macbook | |
### settings | |
```json | |
{ | |
"Seti_SB_big": true, | |
"Seti_SB_bright": true, | |
"Seti_orange_label": true, | |
"animation_enabled": false, | |
"binary_file_patterns": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
⌃ <- Control | |
⌥ <- Option aka alt | |
⌘ <- Command | |
⇧ <- Shift | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Default webflow media queries | |
Desktop (base): styles apply to all devices unless overridden at other device breakpoints | |
https://university.webflow.com/lesson/intro-to-breakpoints | |
*/ | |
/*styles applied to screens 1280px wide and above*/ | |
@media (min-width: 1280px) { ... } | |
/*styles applied to screens 1440px wide and above*/ | |
@media (min-width: 1440px) { ... } | |
/*styles applied to screens 1920px wide and above*/ |