Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* | |
| Sphinx serves as an easy-to-use command line encryption/ | |
| decryption tool. It performs the encryption/decryption operation | |
| based on the file content and passphrase from user input. | |
| The secret data is saved in the following format: | |
| + 16 + 12 + | |
| | bytes | bytes + | |
| +-------------+----------------------------+ |
| listGrep() { | |
| ps aux | grep $1 | awk '{print $2}' | |
| } | |
| killGrep() { | |
| ps aux | grep $1 | awk '{print $2}' | xargs -r kill -9 | |
| } |
Title: Tmux project sessions
Date: 2014-12-24 17:00
Tags: Tmux, learn-X-in-Y-minutes
Author: K. Y. Ng
This is a tutorial for setting up Tmux for saving terminal project sessions.
Tmux helps you emulate several shell sessions within the same terminal
window.