Myriad's "killer app".
Stay tuned.
multi algo
merged mining
auto exchange
multipool.
but which coins will be merge-mined?
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
# setup mining commands
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
scryptminer="SCRYPT MINER COMMAND INCLUDING OPTIONS"
groestlminer="GROESTL MINER COMMAND INCLUDING OPTIONS"
skeinminer="SKEIN MINER COMMAND INCLUDING OPTIONS"
# get block explorer and save profitability of GPU algos to file (rounding to whole numbers)
curl -s http://myriad.theblockexplorer.com/ | grep "Coins/Scrypt MH:" | sed 's/^.*Coins\/Scrypt MH:
//' | sed 's/\..*$//' > /tmp/profit.txt
# extract profitability into array
s=$(set -- $s
echo "Scrypt: $1"
echo "Groestl: $2"
echo "Skein: $3"
echo "Qubit: $4"
# this line sets qubit to 0 so we never mine it (comment out if you want to start mining this algo)
set -- "${@:1:3}" "0"
echo "Adjusted profits $@"
# search for max profit
count=0
max=0
winner=0
for n in "$@" ; do
count=$[count + 1]
if [ $n -gt $max ]
then
max=$n
winner=$count
fi
done
# now we know which algo is winning, switch to mining it
case "$winner" in
1) echo "Switching to Scrypt"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $scryptminer &
;;
2) echo "Switching to Groestl"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $groestlminer &
;;
3) echo "Switching to Skein"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $skeinminer &
;;
4) echo "Switching to Qubit"
;;
esac
chmod +x /usr/local/bin/profit
0 * * * * /usr/local/bin/profit
#!/bin/bash
# setup mining commands
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
scryptminer="SCRYPT MINER COMMAND INCLUDING OPTIONS"
groestlminer="GROESTL MINER COMMAND INCLUDING OPTIONS"
skeinminer="SKEIN MINER COMMAND INCLUDING OPTIONS"
# get block explorer and save profitability of GPU algos to file (rounding to whole numbers)
curl -s http://myriad.theblockexplorer.com/ | grep "Coins/Scrypt MH:" | sed 's/^.*Coins\/Scrypt MH:
//' | sed 's/\..*$//' > /tmp/profit.txt
# extract profitability into array
s=$(set -- $s
echo "Scrypt: $1"
echo "Groestl: $2"
echo "Skein: $3"
echo "Qubit: $4"
# this line sets qubit to 0 so we never mine it (comment out if you want to start mining this algo)
set -- "${@:1:3}" "0"
echo "Adjusted profits $@"
# search for max profit
count=0
max=0
winner=0
for n in "$@" ; do
count=$[count + 1]
if [ $n -gt $max ]
then
max=$n
winner=$count
fi
done
# now we know which algo is winning, switch to mining it
case "$winner" in
1) echo "Switching to Scrypt"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $scryptminer &
;;
2) echo "Switching to Groestl"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $groestlminer &
;;
3) echo "Switching to Skein"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $skeinminer &
;;
4) echo "Switching to Qubit"
;;
esac
chmod +x /usr/local/bin/profit
0 * * * * /usr/local/bin/profit
#!/bin/bash
# setup mining commands
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
scryptminer="SCRYPT MINER COMMAND INCLUDING OPTIONS"
groestlminer="GROESTL MINER COMMAND INCLUDING OPTIONS"
skeinminer="SKEIN MINER COMMAND INCLUDING OPTIONS"
# get block explorer and save profitability of GPU algos to file (rounding to whole numbers)
curl -s http://myriad.theblockexplorer.com/ | grep "Coins/Scrypt MH:" | sed 's/^.*Coins\/Scrypt MH:
//' | sed 's/\..*$//' > /tmp/profit.txt
# extract profitability into array
s=$(set -- $s
echo "Scrypt: $1"
echo "Groestl: $2"
echo "Skein: $3"
echo "Qubit: $4"
# this line sets qubit to 0 so we never mine it (comment out if you want to start mining this algo)
set -- "${@:1:3}" "0"
echo "Adjusted profits $@"
# search for max profit
count=0
max=0
winner=0
for n in "$@" ; do
count=$[count + 1]
if [ $n -gt $max ]
then
max=$n
winner=$count
fi
done
# now we know which algo is winning, switch to mining it
case "$winner" in
1) echo "Switching to Scrypt"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $scryptminer &
;;
2) echo "Switching to Groestl"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $groestlminer &
;;
3) echo "Switching to Skein"
killall cgminer
killall sgminer
sleep 3
/usr/bin/screen -d -m -S miner $skeinminer &
;;
4) echo "Switching to Qubit"
;;
esac
chmod +x /usr/local/bin/profit
0 * * * * /usr/local/bin/profit