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
# Today the twitter user @ayubio said he had received the private key for a Brazillian bank's HTTPS certificate: | |
# - https://twitter.com/ayubio/status/994260981294469120 | |
# - https://twitter.com/ayubio/status/994262029929246722 | |
# - https://twitter.com/ayubio/status/994277992351391744 | |
# To prove he actualy had the key, another user asked him to sign a message with such key and so he did: | |
# - http://pastebin.xyz/p?q=bXllODA | |
# The commands bellow will check that signature | |
# Store the message in a file (tweet.txt) in the same way @ayubio did: |
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
$ react-native init AwesomeProject | |
This will walk you through creating a new React Native project in /home/.../AwesomeProject | |
Installing react-native... | |
Consider installing yarn to make this faster: https://yarnpkg.com | |
npm WARN deprecated [email protected]: use uuid module instead | |
├── UNMET PEER DEPENDENCY react@~15.4.0-rc.4 | |
└─┬ [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] |
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
### Keybase proof | |
I hereby claim: | |
* I am guilhermednt on github. | |
* I am gdnt (https://keybase.io/gdnt) on keybase. | |
* I have a public key whose fingerprint is E273 C1AA A1DA 3EE3 ADD7 B4AF 1FC6 30E0 2096 194A | |
To claim this, I am signing this object: |
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
#/usr/bin/env bash | |
# MIT © Sindre Sorhus - sindresorhus.com | |
# git hook to run a command after `git pull` if a specified file was changed | |
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
check_run() { | |
echo "$changed_files" | grep --quiet "$1" && eval "$2" |