Algorithm Puzzles: Letter Combinations of a Phone Number
Algorithm Puzzles everyday every week sometimes: Letter Combinations of a Phone Number
Algorithm Puzzles everyday every week sometimes: Letter Combinations of a Phone Number
Algorithm Puzzles everyday every week sometimes: 3Sum Closest
If set runs-on
as ubuntu-latest
, user can use Github CLI tool gh
to set secret in actions:
1 | - name: Set ECR credentials |
Algorithm Puzzles everyday every week sometimes: 3Sum
Using following command to delete all workflow runs on GitHub actions of a specific branch:
1 | user=GH_USERNAME repo=REPO_NAME; gh api repos/$user/$repo/actions/runs \--paginate -q '.workflow_runs[] | select(.head_branch == "master") | "\(.id)"' | \xargs -n1 -I % gh api repos/$user/$repo/actions/runs/% -X DELETE |
Replace GH_USERNAME
and REPO_NAME
with your parameters.
You need to install GitHub CLI tool
gh
first.
Algorithm Puzzles everyday every week sometimes: Longest Substring Without Repeating Characters
Algorithm Puzzles everyday every week sometimes: Generate Parentheses
1 | raspivid -o - -t 0 | cvlc -v stream:///dev/stdin --sout '#rtp{sdp=rtsp://:5554/}' :demux=h264 |
AWS doesn’t provide official AWS CLI V2 binary release for Raspberry Pi. To install V2 on Raspberry Pi, we have to install it from source:
1 | git clone https://github.com/aws/aws-cli.git |
GNU linker provides an --wrap
option which can help developer replace symbols easily.