This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
Helm 3 is storing description of it's releases in secrets. You can simply find them via
$ kubectl get secrets
NAME TYPE DATA AGE
sh.helm.release.v1.wordpress.v1 helm.sh/release.v1 1 1h
If you want to get more info about the secret, you can try to describe the secret
$ kubectl describe secret sh.helm.release.v1.wordpress.v1
| #!/bin/bash | |
| PATH=/bin:/usr/bin:/usr/local/bin | |
| check-nfs () { | |
| local TMPFILE=/tmp/checknfs.$$ RET=0 ORPHAN SUBSHELLPID | |
| if [ "$#" -eq 0 ]; then | |
| cat<<EOF | |
| usage: check-nfs NFS-DIRECTORY... |
| require.config({ | |
| paths: { | |
| jquery : "../../vendors/js/jquery/jquery", | |
| validate : "../../vendors/js/jquery.validation/jquery.validate", | |
| validate_fr : "../../vendors/js/jquery.validation/messages_fr" | |
| }, | |
| map: { | |
| // Façade modules or swap them for another one | |
| "*": { |
| #!/bin/bash | |
| # __ | |
| # _____ ____ _/ |_ ____ ____ _______ | |
| # / \ _/ __ \ \ __\_/ __ \ / _ \ \_ __ \ | |
| # | Y Y \\ ___/ | | \ ___/ ( <_> ) | | \/ | |
| # |__|_| / \___ > |__| \___ > \____/ |__| | |
| # \/ \/ \/ | |
| # | |
| # .___ | |
| # __| _/ __ __ _____ ______ |
| try { | |
| module.$localStorage[key] = serializer(value); | |
| } catch(e) { | |
| if(e.name === 'QUOTA_EXCEEDED_ERR') { | |
| // reset to make space | |
| module.reset(); | |
| module.$localStorage[key] = serializer(value); | |
| } else { | |
| module.localStorageAvailable = false; | |
| $log.error("Local storage write failure - " + e); |
Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.
open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html