上一页 1 ··· 156 157 158 159 160 161 162 163 164 ··· 498 下一页
摘要: During the deployment, if you have any external files you need to add into build process. You can save those files into S3. Then pulling those files i 阅读全文
posted @ 2021-02-22 16:22 Zhentiw 阅读(81) 评论(0) 推荐(0)
摘要: const items = [ 'Sojourner', 'Opportunity', 'Spirit', 'Curiosity', 'Perseverance', ] const formatter = new Intl.ListFormat('en', { style: 'long', type 阅读全文
posted @ 2021-02-21 21:49 Zhentiw 阅读(154) 评论(0) 推荐(0)
摘要: 1. Download the git repo into local. 2. Copy the SSH / HTTPS URL from CodeCommit Repo Then run: git remote set-url origin ssh://code-commit.address.xx 阅读全文
posted @ 2021-02-17 21:24 Zhentiw 阅读(62) 评论(0) 推荐(0)
摘要: .ow { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; white-space: normal } Post 阅读全文
posted @ 2021-02-17 18:01 Zhentiw 阅读(77) 评论(0) 推荐(0)
摘要: Read Dependency Confusion: How I Hacked Into Apple, Microsoft and Dozens of Other Companies Yarn: yarn install –immutable --immutable-cache --checkcac 阅读全文
posted @ 2021-02-15 23:27 Zhentiw 阅读(84) 评论(0) 推荐(0)
摘要: Schedule timed jobs on macOS with launchd launchd is a robust scheduled job automation tool on macOS that allows you to schedule a task to be run at r 阅读全文
posted @ 2021-02-12 20:40 Zhentiw 阅读(369) 评论(0) 推荐(0)
摘要: Getopts Let’s say you want to allow a user to pass a -v flag to turn on verbose logging in a script. Manually parsing out options passed to a script i 阅读全文
posted @ 2021-02-12 16:13 Zhentiw 阅读(51) 评论(0) 推荐(0)
摘要: Case Basic case "$1" in a) echo "a match";; b) echo "b match";; c) echo "c match" ;; *) echo "none of the case match" exit 1;; esac If we run: ./case_ 阅读全文
posted @ 2021-02-12 15:44 Zhentiw 阅读(89) 评论(0) 推荐(0)
摘要: Git hooks In root of project: mkdir -p hooks cd hooks touch post-merge post-merge: #! /bin/bash # all stdio in this script after this line will be sen 阅读全文
posted @ 2021-02-12 03:05 Zhentiw 阅读(71) 评论(0) 推荐(0)
摘要: In this lesson, we'll apply our jq skills and write a script that gets a list of dependencies from package.json and greps for usages of every package. 阅读全文
posted @ 2021-02-12 02:43 Zhentiw 阅读(75) 评论(0) 推荐(0)
上一页 1 ··· 156 157 158 159 160 161 162 163 164 ··· 498 下一页