Salesforce CLI with Docker in AWS

Auth was the tricky part as the normal auth requires a browser session rather than taking it from the CLI prompt. ...

28 June, 2019 · Logan Han

Pooq Proxy

This is my current setup for watching Pooq in Australia for anyone interested. With local proxy, below 4k streaming (UHD) seems alright with NBN via AussieBB. TPG might have better throughput as they have PPC-1 submarine cable. ...

14 January, 2018 · Logan Han

Generate custom x509 certificate in Okta

* Requires API key with admin access, least for the target app ...

19 November, 2017 · Logan Han

Selenium test with docker-compose

Sample config file when using selenium standalone during test. docker-compose YAML ...

23 May, 2017 · Logan Han

AWS KMS - two liners

For binary encrypted output: 1 2 aws kms encrypt --region ap-southeast-2 --key-id alias/blah --plaintext fileb://blah --output text --query CiphertextBlob | base64 --decode > blah.enc aws kms decrypt --ciphertext-blob fileb://blah.enc --output text --query Plaintext | base64 --decode For base64 encrypted output: ...

18 May, 2017 · Logan Han