$ sudo tmutil listbackups
$ sudo tmutil uniquesize "/Volumes/Time Machine/Backups.backupdb/YOUR_MACHINE_NAME/BACKUP_NAME"
$ sudo tmutil calculatedrift "/Volumes/Time Machine/Backups.backupdb/YOUR_MACHINE_NAME/"
- Blockchain
- What it is: Hash-based growing list of blocks, commonly implemented using merkle-tree
- Why: Data integrity, no double-spending, no central point of failure
- How: Using public-private cryptography. Using public key as an identity of asset owner and private key as a proof of ownership(right to do action on the asset)
- EVM
- Public blockchain-based distributed computing platform using smart contract.
- Solidity and smart contract
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
# Check connection status | |
$ nmcli d | |
# Edit network setting via tui | |
$ nmtui | |
# Restart network service | |
$ service network restart |
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
$ usermod -aG GROUP_NAME USER_NAME |
Things to try when it's not working(npm run coverage):
- Try removing node_modules and .nyc_output directory and run npm install
- Use different version of binaries
- NodeJS version: v12.13.0
- NPM version: 6.12.0
- NPX version: 6.12.0
- Add --exit option to MochaJS
- Add cache option to .nycrc file
$ ffmpeg -i input.h264 -c:v libx264 -c:a copy output.mp4
- without need of password:
sqlplus / as sysdba
- password manually:
sqlplus sys as sysdba
- password in command:
sqlplus sys/Pass1234 as sysdba
- password manually:
sqlplus sys@\"1.2.3.4:1521/orcl\" as sysdba
- password in command:
sqlplus sys/[email protected]:1521/orcl as sysdba