- Goto https://nikeb2c.pagerduty.com/schedules#P2N04XC
- Click "Schedule Info" on the right https://imgur.com/a/LR2nRcD
- CTRL+Click link "WebCal feed" link and select copy link address
- Goto https://outlook.office.com/calendar/
- Click "Import Calendar" in the left pane https://imgur.com/a/DK1FaXG
- In the left pane of the modal, click "From Web"
- Paste the link from the clipboard and give it a name like "SNKRS PagerDuty" https://imgur.com/a/HDcA69c
This file contains hidden or 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
#! /bin/bash | |
export PATH="$PATH:/usr/local/share/npm/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | |
alias lint="npm run lint -- --fix" | |
alias t="npm run test:mocha" | |
alias m="git co master" | |
alias mp="git co master && git pull" | |
alias stats=git-quick-stats | |
alias afk='pipes.sh -r 10000 -R -p 3' | |
This file contains hidden or 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
config goes here? |
This file contains hidden or 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
describe("new clean conversationDirective", function () { | |
/** | |
* Factory to mock: | |
* CreateUserChatMessageView | |
* CreateUserChatStateView | |
* CreateUserConversationView | |
* @param id {String} name for the createView() spy "Conversation", "ChatMessage", "ChatState" (name of factory w/o prefix/suffix) | |
* @return {jasmine.Spy} spy for view constructor function injected into conversationDirective. | |
* Spies will return a mockView object that conversationDirective calls .subscribe() on | |
*/ |