For best results:
- Use only a single core per VM (cpus setting). This is critical, more causes problems.
- Set the sysctl.conf settings below
Add to /etc/sysctl.conf
and reboot
#!/bin/bash -e | |
# JAVA_HOME can be passed as argument if not set | |
if [ ! -d $JAVA_HOME ]; then | |
JAVA_HOME=${1} | |
fi | |
KEYSTORE=$JAVA_HOME/jre/lib/security/cacerts | |
if [ ! -f "$KEYSTORE" ]; then | |
echo "Keystore not found in '$KEYSTORE'" | |
exit 1 |
WIP
Lets say a user wants to spin up a node with 0.1 btc, open a few channels, and generate routing fees.
How do they calculate a risk/reward ratio (RR) that makes economic sense?
What else can they do to improve the calculation, such as compartmentalising risk into discrete chunks which can be evaluated independently?
query GetMagmaOffers { | |
getOffers { | |
list { | |
account | |
amboss_fee_rate | |
base_fee | |
base_fee_cap | |
fee_rate | |
fee_rate_cap | |
id |
If you make use of Bluewallet and wish to use someone's LNDhub to connect to, the following providers can assist:
There is also a Go implemention of LNDhub behind
WIP, been a slow minting after launch. Seems like most high volume NFT launches involve buying their own tokens and artificial hype.
<?php | |
// original script from https://www.cyberciti.biz/tips/change-linux-or-unix-system-password-using-php-script.html | |
// adapted by Bretton 2020-09-22 | |
// | |
// Requirements | |
// 1. webserver with https and php enabled | |
// 2. make sure you run visudo first and ensure it has | |
// | |
// www-data ALL=(ALL) NOPASSWD: /usr/bin/smbpasswd | |
// |