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
curl -H "Authorization: Basic 1234" \ | |
-H "X-Custom-Header: test-value" \ | |
"https://8nimdxyyo1.execute-api.us-east-1.amazonaws.com/stage/example/ABCD?sort=ascending" |
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
#!/bin/bash | |
# Install the silver searcher (ag) for super-fast searching capability | |
brew install --overwrite the_silver_searcher | |
# Install pythong because on one of my systems the vim install got all bent | |
# out of shape and picked the wrong python (python already exists, so overwrite it) | |
brew install --overwrite python | |
# Install the latest vim so YouCompleteMe will work |
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
" Disable vi-compatibility | |
set nocompatible | |
" Set bash shell to avoid fish-related problems | |
set shell=bash | |
"=============================================================================== | |
" NeoBundle | |
"=============================================================================== |
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
######################################## | |
# # | |
# Important Note # | |
# # | |
# When running calabash-ios tests at # | |
# www.lesspainful.com # | |
# this file will be overwritten by # | |
# a file which automates # | |
# app launch on devices. # | |
# # |
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
set PATH ~/bin ~/.rvm/bin $PATH | |
set -U fish_color_user magenta | |
set -U fish_color_host yellow | |
set -U fish_color_git_clean green | |
set -U fish_color_git_dirty red | |
set -U fish_color_git_ahead red | |
set -U fish_color_git_staged yellow |