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
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/xxx/.oh-my-zsh" | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="robbyrussell" | |
ZSH_DISABLE_COMPFIX="true" | |
ENABLE_CORRECTION="false" |
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
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/core" | |
brew "asdf" | |
brew "gh" | |
brew "git" | |
brew "mackup" | |
brew "mas" | |
brew "zsh" | |
cask "github" |
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
// sync between production source and staging destination | |
aws-vault exec project -- aws s3 sync s3://assets.project.com s3://staging-assets.project.com --acl public-read |
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
// ✅ Working | |
const trackViewProduct = async product => { | |
AppEventsLogger.logEvent('fb_mobile_content_view', { | |
fb_content_id: product.plu, | |
fb_content_type: 'product', | |
fb_currency: 'AUD', | |
}); | |
}; | |
// ✅ Working |
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
{ | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"default_line_ending": "LF", | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"enable_tab_scrolling": false, | |
"auto_indent": true, | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"font_face": "Source Code Pro", | |
"font_size": 12, |
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
import { pick } from 'lodash'; | |
import Cookies from 'js-cookie'; | |
import queryString from 'query-string'; | |
const utmParams = [ | |
'utm_source', | |
'utm_medium', | |
'utm_campaign', | |
'utm_term', | |
'utm_content', |