This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| netstat -nat | awk '{print $6}' | sort | uniq -c | sort -n |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:react/recommended", | |
| ], | |
| "env": { | |
| "es6": true, | |
| "browser": true, | |
| "node": true, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Use Non-ASCII Font" : false, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { | |
| "Green Component" : 0.6151015758514404, | |
| "Blue Component" : 0.9642278552055359, | |
| "Red Component" : 0.3451849222183228 | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Helper to Pickle objects with bz2 compression | |
| """ | |
| import bz2, pickle, os.path | |
| def save_object(filename, data_object): | |
| print('saving object "' + filename + '"') | |
| save_file = bz2.BZ2File(filename, 'w') | |
| pickle.dump(data_object, save_file) |
OlderNewer