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
Title MOONLANDER 2 TUNING SCRIPT
:next
echo List of available frequencies:
echo ==========================================
echo ! 384 !
echo ! 450, 480 !
echo ! 540, 576 !
echo ! 600, 612, 625, 636, 648, 660, 672, 684 !
echo ! 700, 720, 744, 756, 768, 796 !
echo ! 832, 852, 876 !
echo ! 900, 924, 954 !
echo ==========================================
set /p UserInput=Enter a frequeny:
set /a freq =UserInput
IF %freq% EQU 384 goto run
IF %freq% EQU 450 goto run
IF %freq% EQU 480 goto run
IF %freq% EQU 540 goto run
IF %freq% EQU 576 goto run
IF %freq% EQU 600 goto run
IF %freq% EQU 612 goto run
IF %freq% EQU 625 goto run
IF %freq% EQU 636 goto run
IF %freq% EQU 648 goto run
IF %freq% EQU 660 goto run
IF %freq% EQU 672 goto run
IF %freq% EQU 684 goto run
IF %freq% EQU 700 goto run
IF %freq% EQU 720 goto run
IF %freq% EQU 744 goto run
IF %freq% EQU 756 goto run
IF %freq% EQU 768 goto run
IF %freq% EQU 796 goto run
IF %freq% EQU 832 goto run
IF %freq% EQU 852 goto run
IF %freq% EQU 876 goto run
IF %freq% EQU 900 goto run
IF %freq% EQU 924 goto run
IF %freq% EQU 954 goto run
echo **ERROR** frequency is invalid -- try again!
goto next
:run
bfgminer.exe --scrypt -S MLD:all --set MLD:clock=%freq% --benchmark
echo =======================================================================
echo The frequency is: %freq%
echo IF you do not want to change the frequency just hit enter two times :)!
pause
cls
goto next