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.
TZ=GMT ./xdag -d -m 2 pool:ip
TZ=GMT date
#!/bin/bash
PIDS="`pidof xdag`"
if [ "$?" -eq 0 ]; then
echo "Daemon is running! Stop it before recompiling. PIDs: ${PIDS}"
echo "run ./xdag_console.sh and type 'terminate' to terminate the daemon."
exit 1
fi
echo Updating git repository...
(cd ~/cheatcoin && git pull && cd ./cheatcoin && make)
echo "Done! Start the daemon with ./xdag_run.sh"
#!/bin/bash
PIDS="`pidof xdag`"
if [ "$?" -eq 0 ]; then
echo "Daemon already running? PIDs: ${PIDS}"
echo "run ./xdag_console.sh and type 'terminate' to terminate the daemon."
exit 1
fi
echo Starting daemon...
(cd ~/cheatcoin/cheatcoin && TZ=GMT ./xdag -d -m 20 54.37.158.221:13654)
echo -n "Daemon PIDs: "
pidof xdag
#!/bin/bash
pidof xdag > /dev/null
if [ "$?" -ne 0 ]; then
echo "Daemon not running! Start it with ./xdag_run.sh"
exit 1
fi
echo Starting console...
(cd ~/cheatcoin/cheatcoin && TZ=GMT ./xdag -i)
echo -n "Daemon PIDs: "
pidof xdag