Skip to content

Instantly share code, notes, and snippets.

@MrVibe
MrVibe / wplms app
Last active August 12, 2021 14:51
Latest WPLMS App [November 2019] - Tested [6th March 2020] - [update 6th May]
Notice [6th May] : InAppBrowser version should be 3.2.0 and Ios Cordova version 5.1.1
/*====
Ionic:
Ionic CLI : 5.4.4
Utility:
@bmhatfield
bmhatfield / .zshrc
Last active May 31, 2024 01:22
OSX Keychain Environment Variables
# If you use bash, this technique isn't really zsh specific. Adapt as needed.
source ~/keychain-environment-variables.sh
# AWS configuration example, after doing:
# $ set-keychain-environment-variable AWS_ACCESS_KEY_ID
# provide: "AKIAYOURACCESSKEY"
# $ set-keychain-environment-variable AWS_SECRET_ACCESS_KEY
# provide: "j1/yoursupersecret/password"
export AWS_ACCESS_KEY_ID=$(keychain-environment-variable AWS_ACCESS_KEY_ID);
export AWS_SECRET_ACCESS_KEY=$(keychain-environment-variable AWS_SECRET_ACCESS_KEY);