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.
@echo off
:Global
:: Set options - Change Retries, seconds and pool/usernames to those you desire. Make sure to include port numbers
SET retries=1
SET seconds=1
::Change TTL to how long you want to be at the secondary/tertiary pool before trying the primary. Time in milliseconds. 600000 = 1 hour, 60000 = 1 minute
SET TTL=60000
:If you would like to a specific amount of threads, remove the ":" from the next line and specify. Add "--threads=%threads%" to the end of each minerd line.
:SET threads=X
:Primary Pool
SET userpass2=
SET pool2=http://ltc.xurious.com:9332
:Secondary Pool
SET userpass1=
SET pool1=http://litecoinpool.org:9332/
:Tertiary Pool
SET userpass3=
SET pool3=
::Actualy mining part
:MINE
START /B /wait minerd.exe --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS1% --url=%pool1%
START /B minerd.exe --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS2% --url=%pool2%
tasklist /FI "IMAGENAME eq minerd.exe" 2>NUL | find /I /N "minerd.exe">NUL
if "%ERRORLEVEL%"=="0" PING 1.1.1.1 -n 1 -w %TTL% >NUL
TASKKILL /F /IM "minerd.exe"
START /B /wait minerd.exe --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS1% --url=%pool1%
START /B minerd.exe --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS3% --url=%pool3%
tasklist /FI "IMAGENAME eq minerd.exe" 2>NUL | find /I /N "minerd.exe">NUL
if "%ERRORLEVEL%"=="0" PING 1.1.1.1 -n 1 -w %TTL% >NUL
TASKKILL /F /IM "minerd.exe"
GOTO MINE
:END