When compiling git from source, I often run into this problem:
% make prefix=$HOME all doc info
SUBDIR git-gui
SUBDIR gitk-git
SUBDIR templates
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C Documentation all
kinesis = boto3.client( | |
'kinesis', | |
region_name=awsRegion, | |
aws_access_key_id=accessKeyId, | |
aws_secret_access_key =secretAccessKey | |
) |
function getEntriesFromAElements(element) { | |
return element.querySelectorAll('a') | |
.map(e => ({ e.text : e.getAttribute('href') } )); | |
} |
for i in range(5): | |
print(i) |
# create a list of 2d indices of A in decreasing order by the size of the | |
# (real) entry of A that they index to | |
def sortedIndices(A): | |
indexList = [(i,j) for i in range(A.shape[0]) for j in range(A.shape[1])] | |
indexList.sort(key=lambda x: -A[x]) | |
return np.array(indexList) |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: ingress | |
spec: | |
rules: | |
- http: | |
paths: | |
- path: / | |
backend: |
#!/usr/bin/env zsh | |
set -ex | |
INPUT_FILE_PATH=${INPUT:a} | |
INPUT_DIR=${INPUT:a:h} | |
INPUT_EXT=${INPUT:e} | |
REVERSE_FILE_PATH="${INPUT_DIR}/reverse.${INPUT_EXT}" | |
FORWARD_FILE_PATH="${INPUT_DIR}/forward.${INPUT_EXT}" |
[ | |
{ | |
"netflix_collection_number": 1, | |
"netflix_episode_number": 1, | |
"title": "If I Were You", | |
"series_number": 285, | |
"season": 11, | |
"season_number": 28, | |
"air_date": "2007-01-24" | |
}, |