It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#!/bin/bash
#screen -dm /bcheck7.sh
#screen -X -S 11111 kill (screen -ls for 11111)
while true
do
b1=$(/home/dash/dash1-cli -datadir=/home/dash/.dash1/ getblockcount)
b2=$(/home/dash/dash2-cli -datadir=/home/dash/.dash2/ getblockcount)
b3=$(/home/dash/dash3-cli -datadir=/home/dash/.dash3/ getblockcount)
b4=$(/home/dash/dash4-cli -datadir=/home/dash/.dash4/ getblockcount)
b5=$(/home/dash/dash5-cli -datadir=/home/dash/.dash5/ getblockcount)
b6=$(/home/dash/dash6-cli -datadir=/home/dash/.dash6/ getblockcount)
b7=$(/home/dash/dash7-cli -datadir=/home/dash/.dash7/ getblockcount)
ba=$[($b1+$b2+$b3+$b4+$b5+$b6)/6]
if [ $[$b1+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash1/debug.log >> crash1.log
/home/dash/dash1-cli stop
sleep 30
pkill -9 dashd1 dash_shutoff
sleep 10
/home/dash/d1.sh
exit
fi
if [ $[$b2+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash2/debug.log >> crash2.log
/home/dash/dash2-cli stop
sleep 30
pkill -9 dashd2 dash_shutoff
sleep 10
/home/dash/d2.sh
exit
fi
if [ $[$b3+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash3/debug.log >> crash3.log
/home/dash/dash3-cli stop
sleep 30
pkill -9 dashd3 dash_shutoff
sleep 10
/home/dash/d3.sh
exit
fi
if [ $[$b4+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash4/debug.log >> crash4.log
/home/dash/dash4-cli stop
sleep 30
pkill -9 dashd4 dash_shutoff
sleep 10
/home/dash/d4.sh
exit
fi
if [ $[$b5+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash5/debug.log >> crash5.log
/home/dash/dash5-cli stop
sleep 30
pkill -9 dashd5 dash_shutoff
sleep 10
/home/dash/d5.sh
exit
fi
if [ $[$b6+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash6/debug.log >> crash6.log
/home/dash/dash6-cli stop
sleep 30
pkill -9 dashd6 dash_shutoff
sleep 10
/home/dash/d6.sh
exit
fi
if [ $[$b7+1] -lt $ba ]; then
tail -n 30 /home/dash/.dash7/debug.log >> crash7.log
/home/dash/dash7-cli stop
sleep 30
pkill -9 dashd7 dash_shutoff
sleep 10
/home/dash/d7.sh
exit
fi
sleep 1000
done