I hereby claim:
- I am imylomylo on github.
- I am mylonas (https://keybase.io/mylonas) on keybase.
- I have a public key ASBtx-3MIaMPeCamu_zbXwO8KBeBDMDmab-Cfkc5wHfpFwo
To claim this, I am signing this object:
$ komodo-cli -ac_name=OFDEMO getbalance64 | |
{ | |
"mature": 573000, | |
"immature": 67000, | |
"staking": [ | |
1000000000000, | |
1000000000000, | |
1000000000000, | |
1000000000000, | |
1000000000000, |
{ | |
"txid": "b20c02b2b6be5cea7951a453676b2b66be0e879b074ac6e8eb39c1363cb01d22", | |
"version": 4, | |
"locktime": 1597476969, | |
"confirmations": 6848, | |
"notarized": false, | |
"height": 26204, | |
"lastNotarizedHeight": 0, | |
"vin": [ | |
{ |
#!/usr/bin/expect | |
set timeout -1; | |
spawn {{django_dir}}/venv/bin/python manage.py changepassword {{admin_user}}; | |
expect { | |
"Password:" { exp_send "{{admin_pass}}\r" ; exp_continue } | |
"Password (again):" { exp_send "{{admin_pass}}\r" ; exp_continue } | |
eof | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
UTXO_TX=$(time (~/komodo/src/komodo-cli listunspent | jq '. | { "utxos" : length }' && ~/komodo/src/komodo-cli getwalletinfo | jq '{ "txcount" : .txcount }') | jq -s add) | |
CPU_MODEL=$(cat /proc/cpuinfo | grep -m 1 "model name" | awk -F ':' '{print $2}') | |
MEM=$(free | grep Mem | awk '{print $2}') | |
SWAP=$(free | grep Swap | awk '{print $2}') | |
PROCESSES=$(ps aux | wc -l) | |
HDD_RW=$(sudo hdparm -Tt --direct /dev/nvme0n1 ) |
Modified from https://medium.com/kava-labs/kava-testnet-4000-guide-2e47565dc890
& https://github.com/Kava-Labs/kava/blob/master/contrib/kava-3/migration.md
# Updates ubuntu
sudo apt update
sudo apt upgrade -y
# Installs packages necessary to run go
``` | |
~/VerusCoin/src$ kmd -ac_name=VRSC getpeerinfo | |
[ | |
{ | |
"id": 1, | |
"addr": "167.xxx:27485", | |
"addrlocal": "43.xxx", | |
"services": "0000000000000005", | |
"lastsend": 1589688213, |
--- | |
- hosts: [miner_zcash, tag_Name_zmine, zmine*] | |
become_method: sudo | |
become_user: root | |
become: true | |
strategy: free | |
vars: | |
stratum_uri: zec-eu.suprnova.cc:2142 | |
stratum_user: rick3_.user | |
stratum_password: password |
#!/usr/bin/env python3 | |
import hashlib | |
import binascii | |
import base58 | |
# from discord chat, credit to Alrightt github user | |
def WIFdecode(WIF): | |
b58decode = base58.b58decode(WIF) | |
full_privkey = binascii.hexlify(b58decode) |
[mylo@vivo arm]$ tree -L 2 | |
. | |
|-- AndroidVersion.txt | |
|-- MODULE_LICENSE_BSD_LIKE | |
|-- MODULE_LICENSE_MIT | |
|-- NOTICE | |
|-- aarch64-linux-android | |
| |-- bin | |
| |-- lib | |
| `-- lib64 |