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
sudo sh -c "printf '%s\n' \ | |
'LANGUAGE=en_US.UTF-8' \ | |
'LC_ALL=en_US.UTF-8' \ | |
'LANG=en_US.UTF-8' \ | |
'LC_TYPE=en_US.UTF-8' \ | |
> /etc/default/locale" | |
locale-gen en_US.UTF-8 | |
sudo dpkg-reconfigure locales | |
#reboot |
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
openssl pkcs12 -export -out hufsy.pfx -inkey hufsy_com.key -in hufsy_com.crt |
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 -fN [email protected] -L 7777:myserver.com:8888 |
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
sudo lsof -i -n -P |
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
pg_dump -U $USER $DB -t $TABLE --schema-only |
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
git rebase --onto master server client |
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
git check-ignore -v foo/bar.sh |
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
xcode-select --install |
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
describe('init', function() { | |
beforeEach(function() { | |
ctrl.statistics = undefined; | |
sinon.stub(ctrl.statisticsService, 'getRangeVerbose'); | |
sinon.stub(ctrl, 'initRangePicker'); | |
sinon.stub(ctrl, 'watchFilters'); | |
sinon.stub(ctrl, 'pick'); | |
sinon.stub(ctrl, 'getFilters'); | |
}); |
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
pragma solidity ^0.4.21; | |
/** | |
* This contract allows to force Ether into a contract. | |
*/ | |
contract SucideBomber { | |
function SucideBomber() payable {} | |
function boom(address target) public { | |
selfdestruct(target); |
OlderNewer