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
# list enabled | |
# pm list packages -e | |
# list disabled | |
# pm list packages -d | |
# disable | |
# pm disable-user --user 0 <package> | |
# enable |
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
const HASHRATE = 2000; | |
const DIFFICULTY = 6686234.84093497; | |
const NETHASHRATE = 410599776; | |
const BLOCKTIME = 139.5; | |
const BLOCKREWARD = 10; | |
const SECONDSINDAY = 24*60*60; | |
console.log( HASHRATE/NETHASHRATE*(SECONDSINDAY/BLOCKTIME*BLOCKREWARD) ); |