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
// @flow | |
import Authentication from "../../core/Authentication"; | |
import Request from "../core/Request"; | |
import OCCAuthService from "./OCCAuthService"; | |
type UploadInfo = { | |
token: string, | |
segmentsNeeded: Array<number>, | |
}; |
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
/** | |
* Product Util | |
* | |
*/ | |
import ccLogger from 'ccLogger'; | |
import pubsub from 'pubsub'; | |
import CartViewModel from 'pageLayout/cart'; | |
export default { |
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
source-file "${HOME}/.tmux-themepack/powerline/block/green.tmuxtheme" | |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# split panes using | and - | |
bind | split-window -h | |
bind - split-window -v |