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.

GENERATE CUSTOM X509 CERTIFICATE IN OKTA

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

SELENIUM TEST WITH DOCKER-COMPOSE

Sample config file when using selenium standalone during test.

docker-compose YAML

AWS KMS - TWO LINERS

For binary encrypted output:

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:

USER PROFILE SERVICE FAILED THE LOGON. USER PROFILE CANNOT BE LOADED.

https://support.microsoft.com/en-us/contact/menu/software/windows/ts/

https://support.microsoft.com/en-au/help/947215/you-receive-a-the-user-profile-service-failed-the-logon-error-message

Had to contact Microsoft support to receive default file. Download

CURL NET PERFORMANCE TEST

Print out CloudFront X-Amz-Cf-Id when response time is slower than set threshold.

REPLACE MERCEDES-BENZ B250 CABIN(POLLEN) FILTER REPLACEMENT DIY

Quoted $300+ from dealer shop which I know a serious rip-off price for mere carbon filter.

MONGODB TO DYNAMODB

Attempted to convert rather large mongo dump to dynamo.

Seems like AWS data pipeline is most elegant way to do this if one can workaround with dynamo non-standard json format issue.

EUROPE TRAVEL 2016

Turkey - Istanbul Good: Nice people and food Bad: Syrian refugees(=security risks), bit too excessive street sales

LETS ENCRYPT NGINX SSL CERTIFICATE RENEWAL VIA CRON

Add below as a cron entry.

#!/bin/bash
/path/letsencrypt/letsencrypt-auto --server https://acme-v01.api.letsencrypt.org/directory --renew-by-default -a webroot --webroot-path /webroot/ --email youremail --text --agree-tos --agree-dev-preview -d 7979.us -d www.7979.us auth
/etc/init.d/nginx reload

Then configure nginx SSL like below.