create different ssh key according the article Mac Set-Up Git
ssh-keygen -t ed25519 -C "[email protected]"
FROM hello-world |
create different ssh key according the article Mac Set-Up Git
ssh-keygen -t ed25519 -C "[email protected]"
Source | Type | Link |
---|---|---|
Westpack | account, credit cards | https://quickstream.westpac.com.au/docs/general/test-account-numbers/ |
ABN Lookup | reference type | https://abr.business.gov.au/Documentation/ReferenceData |
I hereby claim:
To claim this, I am signing this object:
clean: ## Clean deps | |
@echo "Clean deps and artefacts" | |
@npm cache verify | |
install: ## Install dependencies | |
@echo "Installing Node dependencies" | |
@npm ci | |
start: ## Run in local | |
@echo "Run" |
pytest | |
pytest-mock |
# EditorConfig is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
curl -X GET \ | |
'http://retroachievements.org/dorequest.php?r=login&u=<$USERNAME>&p=<$PASSWORD>' \ | |
-H 'Cache-Control: no-cache' | |
build: | |
docker run -it --rm -v "$(shell pwd)":/usr/src/app -w /usr/src/app maven:3-jdk-8-openj9 mvn clean package | |
test: | |
docker run -it --rm -v "$(shell pwd)":/usr/src/app -w /usr/src/app maven:3-jdk-8-openj9 mvn test | |
run: | |
docker run -it --rm -v "$(shell pwd)":/usr/src/app -w /usr/src/app maven:3-jdk-8-openj9 java -jar target/*.jar | |
.PHONY: build test run |
class SQS { | |
getQueueAttributes() { | |
return this; | |
} | |
async promise() { | |
return; | |
} | |
} | |
module.exports = { |