This Gist was automatically created by Carbide, a free online programming environment.
This Gist was automatically created by Carbide, a free online programming environment.
This file contains 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
Verifying my Blockstack ID is secured with the address 1D3Jsbg9FZvdWNtPRV8GtcgmkaRbWZnfCr https://explorer.blockstack.org/address/1D3Jsbg9FZvdWNtPRV8GtcgmkaRbWZnfCr |
This file contains 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
[alias] | |
co = checkout | |
cob = checkout -b | |
ci = commit | |
st = status | |
br = branch | |
rb = rebase | |
rbi = rebase -i | |
brc = "!f(){ git branch --merged | egrep -v \"(^\\*|master|dev)\" | xargs git branch -d; };f" |
This file contains 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
set -g mouse on | |
# if run as "tmux attach", create a session if one does not already exist | |
new-session -n $HOST |
This file contains 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
[Desktop Entry] | |
Exec=~/Workspaces/monitor_change.py | |
Name=Conky Automatic Restart | |
Comment=Run Conky automatic restart on monitor change | |
Type=Application | |
Icon=video-joined-displays-symbolic | |
NoDisplay=true |
This file contains 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
git diff --cached --name-status | grep -v '^D' | grep '.py' | sed 's/[A-Z][ \t]*//' | xargs black 2>&1 | grep '^reformatted' | sed 's/reformatted[ \t]//' | xargs git add |