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.
DISPLAY=:0.0 aticonfig --pplib-cmd "set fanspeed 0 65"
DISPLAY=:0.1 aticonfig --pplib-cmd "set fanspeed 0 65"
#!/bin/bash
MAXSPD=80
MINSPD=40
if [ $# -lt 2 ];
then
echo "Usage: setfantemp.sh"
exit 1
fi
DEVICE=$1
SETTEMP=$2
export DISPLAY=:0.${DEVICE}
aticonfig --pplib-cmd "set fanspeed 0 55"
while true;
do
CURTEMP=`aticonfig --adapter=${DEVICE} --odgt | grep Temp | sed 's/.* \([0-9]*[0-9][0-9]\)\..*/\1/'`
CURSPD=`aticonfig --pplib-cmd "get fanspeed 0" | grep Result | sed 's/.* \([0-9]*[0-9][0-9]\)\%.*/\1/'`
echo -n "Set temp: ${SETTEMP}C Current temp: ${CURTEMP}C Current speed: ${CURSPD}% - "
if [ "${CURTEMP}" -ne "${SETTEMP}" ]; then
if [ "${CURTEMP}" -lt "${SETTEMP}" ]; then
NEWSPD=$((${CURSPD} - 1))
if [ "${NEWSPD}" -lt "${MINSPD}" ]; then
echo "MIN speed limit"
else
echo "Decreasing speed to ${NEWSPD}"
aticonfig --pplib-cmd "set fanspeed 0 ${NEWSPD}"
fi
else
NEWSPD=$((${CURSPD} + 1))
if [ "${NEWSPD}" -gt "${MAXSPD}" ]; then
echo "MAX speed limit"
else
echo "Increasing speed to ${NEWSPD}"
aticonfig --pplib-cmd "set fanspeed 0 ${NEWSPD}"
fi
fi
else
echo "Stable"
fi
sleep 20
done