###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
| ``` | |
| #helping in stack overflow : https://stackoverflow.com/questions/79752899/nginx-no-ssl-certificate-is-defined-for-the-listen-ssl-directive-on-custom?noredirect=1#comment140708885_79752899 | |
| #I have not had a chance to test this - | |
| # Server block for redirecting HTTP on port 80 to HTTPS on port 443 and handle www to non www | |
| # Redirect http://myproject.com,http://www.myproject.com => to https://myproject.com | |
| server { | |
| listen 80; | |
| server_name myproject.com; | |
| return 301 https://$host$request_uri; |
| /*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*/ |
| ``` | |
| ⌃ <- Control | |
| ⌥ <- Option aka alt | |
| ⌘ <- Command | |
| ⇧ <- Shift | |
| ``` |
| ## old macbook | |
| ### settings | |
| ```json | |
| { | |
| "Seti_SB_big": true, | |
| "Seti_SB_bright": true, | |
| "Seti_orange_label": true, | |
| "animation_enabled": false, | |
| "binary_file_patterns": |
###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
| //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); |