Skip to content

Instantly share code, notes, and snippets.

View d2lam's full-sized avatar
💭
🤷‍♀️

Dao Lam d2lam

💭
🤷‍♀️
View GitHub Profile
@stjohnjohnson
stjohnjohnson / coverage.sh
Last active March 13, 2018 16:48
List of scripts to help automate publishing to NPM and Docker
#!/bin/bash -e
echo Uploading coverage to Coveralls
export CI_PULL_REQUEST=${SD_PULL_REQUEST}
export COVERALLS_SERVICE_NAME=screwdriver
cat ./artifacts/coverage/lcov.info | ./node_modules/.bin/coveralls
@ygotthilf
ygotthilf / jwtRS256.sh
Last active May 6, 2024 08:48
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub