- Re-Map Grave key to Esc for fucking touch bar in the Macbook Pro.
- Change second display brightness and contrast with fn + 3 to 7.
- Launcher applications: Activity Monitor, Firefox, iTerm and Spotify.
- Select area to take screenshot.
- Lock session.
- Paste without format.
The server require fill two tables; mysql_replication_hostgroups and mysql_servers. The first table define who is use for write and who is for reads, and the id number for each, for example any master: [10, 20, 30, 40] and all slave: [11, 12, 13, 21, 22, 23]. The second table is for the server list associated with mysql_replication_hostgroups.
My personal guidelines, and only added shortcuts tested by myself.
Collections the commands combinations to manipulate data:
My personal guidelines, and only added shortcuts tested by myself.
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
_ssh_completions() | |
{ | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
opts=$(grep '^Host' ~/.ssh/config ~/.ssh/config.d/* 2>/dev/null | grep -v '[?*]' | cut -d ' ' -f 2-) | |
COMPREPLY=($(compgen -W "${opts}" -- ${cur})) | |
} | |
complete -F _ssh_completions s | |
s() { |