-Djavax.net.ssl.trustStoreType=KeychainStore
Just pass a dummy file.. otherwise it's not working.
systemProp.javax.net.ssl.trustStore=/dev/null
| #!/bin/bash | |
| # | |
| # See: https://answers.microsoft.com/en-us/msteams/forum/msteams_other/ms-teams-helper-using-up-100-of-cpu-macbook/9305b96e-5381-43cf-88c4-d3ba39b37a58?page=11 | |
| my_array=( $(pgrep -f "Microsoft Teams Helper \(Renderer\)") ) | |
| for i in "${my_array[@]}"; do | |
| renice -n 10 -p $i | |
| done |
| # Place this method in your .bashprofile and replace the proxy placeholders @<proxy>:<proxy-port> | |
| # Set proxy for current Bash session | |
| # ------------------------------------------------------------------- | |
| setProxyForBash() { | |
| echo -e --- set proxy for bash session --- | |
| read -p "Enter your Password: " -s password && echo -e " " | |
| read -r -p "Are you sure? [y/N] " response |
| #!/bin/bash | |
| # git-cleanup-repo | |
| # | |
| # Author: Rob Miller <rob@bigfish.co.uk> | |
| # Adapted from the original by Yorick Sijsling | |
| git checkout master &> /dev/null | |
| # Make sure we're working with the most up-to-date version of master. | |
| git fetch |