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.
INFO 23:31:15: GPU0 Accepted share 61ms [A:14877, R:33]
Temp: GPU0: 63C
GPU0: 469 Sol/s
Total speed: 469 Sol/s
INFO: Detected new work: d6f756bfa4244e81b1e0
INFO 23:31:58: GPU0 DevFee Accepted share
----------------- here the miner was frozen !!! --------------
Temp: ERROR: Lost connection with the server.
GPU0: 63C
GPU0: 461 Sol/s
Total speed: 461 Sol/s
INFO: Attempt to restore connection.
INFO: Connection restored, pool: eu1-zcash.flypool.org:3333.
INFO: Target: 00083126e978d4fd...
INFO: Detected new work: cab121f85048f337c839
INFO 00:54:48: GPU0 Accepted share 66ms [A:14878, R:33]
@echo off
SETLOCAL EnableExtensions
set EXE=miner.exe
set varSeconds=60
set zecServer=zec-eu1.nanopool.org
set tAddress=_SET_YOUR_tADDRESS
set wrkrName=worker1
set [email protected]
REM No need touch these
set varLops=0
set varSkip=0
set varRuns=0
:aIsProcessRunning
@echo Miner Auto Start/Restart
@echo Loop-No - %varLops%
@echo Skipped - %varSkip%
@echo Re-Runs - %varRuns%
TIMEOUT /T %varSeconds%
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto aProcessFound
goto aProcessNotFound
:aProcessFound
@echo %EXE% is Running...
@echo %EXE% skipping Start...
set /a varSkip=%varSkip%+1
@goto aLoopEND
:aProcessNotFound
@echo %EXE% is NOT Running...
@echo %EXE% attempt Start...
set /a varRuns=%varRuns%+1
REM For command line usage
REM start /i /d "c:\__zec\Zec Miner 0.3.4b\0.3.4b\" miner.exe --server %zecServer% --user %tAddress%.%wrkrName%/%wrkrEml% --pass z --port 6666 --pec --api 0.0.0.0:42000
REM For miner.cfg usage
start /i /d "c:\__zec\Zec Miner 0.3.4b\0.3.4b\" miner.exe
@goto aLoopEND
:aLoopEND
@echo Finished Loop...
@cls
set /a varLops=%varLops%+1
@goto aIsProcessRunning
:aExit
@pause
@echo off
SETLOCAL EnableExtensions
set MINERPATH=C:\__zec\Zec Miner 0.3.4b\0.3.4b
set EXE=miner.exe
set varSeconds=60
set zecServer=zec-eu1.nanopool.org
set tAddress=_SET_YOUR_tADDRESS
set wrkrName=worker1
set [email protected]
REM No need touch these
set varLops=0
set varSkip=0
set varRuns=0
set varForc=0
:aIsProcessRunning
@echo Miner Auto Start/Restart
@echo Loop-No - %varLops%
@echo Skipped - %varSkip%
@echo Re-Runs - %varRuns%
@echo Restart - %varForc%
TIMEOUT /T %varSeconds%
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto aProcessFound
goto aProcessNotFound
:aProcessFound
@echo %EXE% is Running...
@echo %EXE% skipping Start...
set /a varSkip=%varSkip%+1
REM Check for : 0 Sol/s state
findstr /c:": 0 Sol/s" "%MINERPATH%\miner.log"
if errorlevel 1 (
echo 0 Sol/s state String NOT found...
) else (
echo 0 Sol/s state String found
REM KILL Task miner.exe
set /a varForc=%varForc%+1
taskkill /f /im miner.exe
TIMEOUT /T 10
del "%MINERPATH%\miner.log"
)
@goto aLoopEND
:aProcessNotFound
@echo %EXE% is NOT Running...
@echo %EXE% attempt Start...
set /a varRuns=%varRuns%+1
REM For command line usage
REM start /i /d "%MINERPATH%\" miner.exe --server %zecServer% --user %tAddress%.%wrkrName%/%wrkrEml% --pass z --port 6666 --pec --api 0.0.0.0:42000
REM For miner.cfg usage
start /i /d "%MINERPATH%\" miner.exe
@goto aLoopEND
:aLoopEND
@echo Finished Loop...
@cls
set /a varLops=%varLops%+1
@goto aIsProcessRunning
:aExit
@pause