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
startsudo() | |
{ | |
sudo -v | |
( while true; do sudo -v; sleep 50; done; ) & | |
SUDO_PID="$!" | |
trap stopsudo SIGINT SIGTERM | |
} | |
stopsudo() | |
{ | |
kill "$SUDO_PID" |
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
/* ripped from semantic-ui.com */ | |
a | |
{ | |
display: inline-block; | |
position: relative; | |
overflow: hidden; | |
vertical-align: top; | |
z-index: 0; | |
-webkit-transition: color 0.2s; |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\directory\background\shell\open with Cmder] | |
"Icon"="C:\\Program Files (x86)\\cmder\\Cmder.exe" | |
[HKEY_CLASSES_ROOT\directory\background\shell\open with Cmder\command] | |
@="\"C:\\Program Files (x86)\\cmder\\Cmder.exe\" /START \"%V\"" | |
[HKEY_CLASSES_ROOT\directory\shell\open with Cmder] |
NewerOlder