Shift + F10
or
Shift + Fn + F10
import 'package:bip39/bip39.dart' as bip39; | |
import "package:hex/hex.dart"; | |
import 'package:web3dart/credentials.dart'; | |
import 'package:bip32/bip32.dart' as bip32; | |
abstract class OKAddressETH { | |
String generateMnemonic(); | |
String getPrivateKey(String mnemonic); | |
Future<EthereumAddress> getPublicAddress(String privateKey); | |
} |
Shift + F10
or
Shift + Fn + F10
git diff -p -R --no-ext-diff --no-color \
| grep -E "^(diff|(old|new) mode)" --color=never \
| git apply
or
git config --global --add alias.permission-reset '!git diff -p -R --no-ext-diff --no-color | grep -E "^(diff|(old|new) mode)" --color=never | git apply'
[ | |
{ | |
"value": "001", | |
"label": "Banco do Brasil S.A." | |
}, | |
{ | |
"value": "003", | |
"label": "Banco da Amazônia S.A." | |
}, | |
{ |
git reset --hard master@{"300 minutes ago"}
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
git config credential.helper store
git config --global credential.helper 'cache --timeout 7200'
sudo apt-get install apache2-dev
# or yum install httpd-tools
ab -n 9999 -c 333 http://localhost:80/
(9999 nr re requisições)
(333 quantidade de vezes)
```sh
If you are on the branch you want to rename:
git branch -m new-name
If you are on a different branch:
git branch -m old-name new-name
sudo apt-get install --reinstall xserver-xorg-input-all
References