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
Homebrew Permissions Denied Issues Solution | |
=========================================== | |
### `sudo chown -R $(whoami) $(brew --prefix)/*` |
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
// https://github.com/emcrisostomo/fswatch/wiki/How-to-Use-fswatch | |
fswatch -or . | xargs -n1 -I{} echo hola |
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
Host *.gerardorf.org !bastion.gerardorf.org | |
User admin | |
IdentityFile ~/.ssh/gerardorf-private-key | |
ProxyCommand ssh -W %h:%p [email protected] | |
Host bastion.gerardorf.org | |
Hostname XXX.XXX.XXX.XXX | |
User admin | |
IdentityFile ~/.ssh/gerardorf-private-key | |
ForwardAgent yes |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<snippet> | |
<content><![CDATA[ | |
for (${1:obj} in ${2:array}){ | |
${3:} | |
}; | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>forin</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<scope>source.js</scope> |