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
#
# Sweet Spot block targeting script v0.1
#
### USER DEFINED BLOCK VALUES
# Text file to store max cpu threads
threadsfile=/home/urban/sweet-spot/cpuid.txt
# XMG block value to triger full speed mining
trgtfull=8
# XMG block value to triger mining at 50%
trgthalf=6
###
echo -e "\nPress [CTRL+C] to stop Sweet Spot block targetting...\n"
# INFINITE LOOP #
while :
do
if [ -f $threadsfile ]; then
cpus=$(<$threadsfile)
else
grep -c processor /proc/cpuinfo > "$threadsfile"
cpus=$(<$threadsfile)
fi
maxuse=$((cpus*100))
avrguse=$((maxuse/2))
minuse=$((maxuse/5))
minerpid=$(pidof minerd)
netblock=$(curl -s -k --retry 3 --retry-delay 30 --retry-max-time 15 http://multipools.info/xmg-block-net-info.txt)
net=$(echo $netblock | cut -d "|" -f 1)
bvalue=$(echo $netblock | cut -d "|" -f 2)
echo " ---------------------------------------------------------"
echo -e " | Current Block reward: \e[1;32m$bvalue\e[39;0m XMG. Network speed: \e[1;32m$net\e[39;0m Mh/s."
if [ $(perl -e "($bvalue >= $trgtfull) ? print 1 : print 0") -eq 1 ]; then
echo " | Switching to Full Speed mining at 100%!"
echo " ---------------------------------------------------------"
# kill cpulimit => full speed
killall -9 cpulimit
elif [ $(perl -e "($bvalue >= $trgthalf) ? print 1 : print 0") -eq 1 ]; then
echo " | Switching to Power Efficient mining at 50%!"
echo " ---------------------------------------------------------"
# cpulimit @ 50% cpu
killall -9 cpulimit
cpulimit -p $minerpid -b -z -l $avrguse
else
echo " | Switching to Power Efficient mining at 20%!"
echo " ---------------------------------------------------------"
# cpulimit @ 20% cpu
killall -9 cpulimit
cpulimit -p $minerpid -b -z -l $minuse
fi
sleep 1m
done
sudo apt-get update && sudo apt-get install -y cpulimit
nano xmg-sweet.sh
chmod +x xmg-sweet.sh
screen -dmS sweet ~/sweet-spot/xmg-sweet.sh
screen -x sweet