Skip to content

Instantly share code, notes, and snippets.

View audetcameron's full-sized avatar

Cameron Audet audetcameron

View GitHub Profile
@audetcameron
audetcameron / webflow-css-mediaqueries.txt
Last active April 18, 2022 15:51
Webflow Default CSS Media Queries for custom css
/*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*/
@audetcameron
audetcameron / gist:7c84508f04e1dce91426a92d5ee94282
Created October 22, 2020 12:59
OSX - Mac Command Characters
```
⌃ <- Control
⌥ <- Option aka alt
⌘ <- Command
⇧ <- Shift
```
@audetcameron
audetcameron / gist:b160699e9de6608ae10c18eb89c81290
Last active September 21, 2020 14:41
My Sublime Text Setup
## old macbook
### settings
```json
{
"Seti_SB_big": true,
"Seti_SB_bright": true,
"Seti_orange_label": true,
"animation_enabled": false,
"binary_file_patterns":
@audetcameron
audetcameron / 2020 Mac Dev Setup.md
Last active September 23, 2020 15:45
New Mac Setup Tips

Installs

###install oh-my-zsh https://ohmyz.sh/#install

$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Vim

reference default vimrc here

@audetcameron
audetcameron / app..js
Last active December 9, 2019 15:28
Import Scroll Magic Plugins into JS build process via npm.
//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);
@audetcameron
audetcameron / readme.md
Last active January 7, 2021 20:50
Bash and zsh aliases and helpers Laravel / NPM etc

aslias for .bashrc and or .zshrc

npm

list npm packages local and global

alias ng="npm list -g --depth=0 2>/dev/null"
alias nl="npm list --depth=0 2>/dev/null"