This file contains hidden or 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
import math | |
full_allocation_size = 1400000 | |
allocated_asset_price_usdt = 0.2 | |
staking_period_days = 20 | |
max_stake_usdt = 3000 | |
max_stake_eth = 1 | |
max_stake_kcs = 270 |
This file contains hidden or 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
//copy next 1 line to the browser console on the linkedin network page https://www.linkedin.com/mynetwork/ | |
setInterval(function() { window.scrollTo(0, document.body.scrollHeight); }, 2000); | |
//wait several minutes then copy all following lines to console | |
var currentSuccesfulConnections=0; | |
var totalConnections=0; | |
var totalInvitations=0; | |
var interestingConnections=0; | |
var inviteText=""; |
This file contains hidden or 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
#mount shared drive | |
#mkdir vmshared | |
#sudo mount -t vboxsf vmshared vmshared | |
#install java 8 | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
java -version |