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.
powershell -Command "rasdial VPNNAME USERNAME PASSWORD"
powershell -Command "rasdial VPNNAME USERNAME PASSWORD"
powershell -Command "rasdial VPNNAME USERNAME PASSWORD"
@ECHO OFF
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
SET COUNT1=0
SET COUNT2=0
SET COUNT3=0
SET COUNT4=0
SET COUNT5=0
SET COUNT6=0
SET COUNT7=0
SET C1=47.35.23.146
SET C2=www.google.com
SET C3=www.microsoft.com
SET C4=www.facebook.com
SET C5=www.myspace.com
SET C6=sfbay.craigslist.org
SET C7=garlic.com
SET REBOOTCOUNT=0
GOTO FIRSTSTART
:START
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
:FIRSTSTART
CLS
ECHO Ping loops since reboot: %OVERALLCOUNT%
ECHO Failed pings since reboot: %FAILEDPINGS%
ECHO Total number of netReboots: %REBOOTCOUNT%
ECHO.
ECHO Total Ping Breakdown:
ECHO.
ECHO %COUNT1% : %C1%
ECHO %COUNT2% : %C2%
ECHO %COUNT3% : %C3%
ECHO %COUNT4% : %C4%
ECHO %COUNT5% : %C5%
ECHO %COUNT6% : %C6%
ECHO %COUNT7% : %C7%
choice /c q /n /t 60 /d q
ping %C1% -n 1 -w 5000
SET /A COUNT1=%COUNT1%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C2% -n 1 -w 5000
SET /A COUNT2=%COUNT2%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C3% -n 1 -w 5000
SET /A COUNT3=%COUNT3%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C4% -n 1 -w 5000
SET /A COUNT4=%COUNT4%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C5% -n 1 -w 5000
SET /A COUNT5=%COUNT5%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C6% -n 1 -w 5000
SET /A COUNT6=%COUNT6%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C7% -n 1 -w 5000
SET /A COUNT=%COUNT7%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C1% -n 1 -w 5000
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
:JUMP
ECHO Internet connection down, Restarting cellular adaptor...
SET /A REBOOTCOUNT=%REBOOTCOUNT%+1
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
powershell -executionPolicy bypass -file "C:\closeVPN.ps1"
ipconfig /flushdns
netsh interface set interface "Cellular" DISABLED
netsh interface set interface "Cellular" ENABLED
ECHO Restarting VPN Service...
START c:\Progra~1\OpenVPN\bin\openvpn-gui.exe --connect JaredKaragen.ovpn
ECHO VPN Service Started.
choice /c q /n /t 5 /d q
GOTO START
$sig = @"
[DllImport(`"user32.dll`")]
public static extern IntPtr FindWindow(string className, IntPtr useZero);
[DllImport(`"user32.dll`")]
public static extern int SendMessage(IntPtr hwnd, uint msg, IntPtr wParam, IntPtr lParam);
[DllImport(`"user32.dll`")]
public static extern void keybd_event(Byte bVk, Byte bScan, UInt32 dwFlags, UInt32 dwExtraInfo);
[DllImport(`"user32.dll`")]
public static extern int PostMessage(IntPtr hwnd, uint msg, IntPtr wParam, IntPtr lParam);
"@
$win32_methods = Add-Type -MemberDefinition $sig -Name "Win32FindWindow" -Namespace Win32Functions -PassThru
$h = $win32_methods::FindWindow("OpenVPN-GUI", 0)
$win32_methods::PostMessage($h, 0x10, 0, 0)
sleep 1
##### simulate enter key down VK_ENTER = 0xD, scan code = 0x9c
$win32_methods::keybd_event(0xD, 0x9c, 0, 0)
##### simulate enter key up: for this change the flags to KEYEVENTF_KEYUP = 0x2
$win32_methods::keybd_event(0xD, 0x9c, 0x2, 0)
@ECHO OFF
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
SET COUNT1=0
SET COUNT2=0
SET COUNT3=0
SET COUNT4=0
SET COUNT5=0
SET COUNT6=0
SET COUNT7=0
SET C1=10.8.0.1
SET C2=www.google.com
SET C3=www.microsoft.com
SET C4=www.facebook.com
SET C5=www.myspace.com
SET C6=sfbay.craigslist.org
SET C7=garlic.com
SET REBOOTCOUNT=0
GOTO FIRSTSTART
:START
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
:FIRSTSTART
CLS
ECHO Ping count since reboot: %OVERALLCOUNT%
ECHO Failed pings since reboot: %FAILEDPINGS%
ECHO Total number of netReboots: %REBOOTCOUNT%
ECHO.
ECHO Total Ping Breakdown:
ECHO.
ECHO %COUNT1% : %C1%
ECHO %COUNT2% : %C2%
ECHO %COUNT3% : %C3%
ECHO %COUNT4% : %C4%
ECHO %COUNT5% : %C5%
ECHO %COUNT6% : %C6%
ECHO %COUNT7% : %C7%
choice /c q /n /t 60 /d q
ping %C1% -n 1 -w 1000
SET /A COUNT1=%COUNT1%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C2% -n 1 -w 1000
SET /A COUNT2=%COUNT2%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C3% -n 1 -w 1000
SET /A COUNT3=%COUNT3%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C4% -n 1 -w 1000
SET /A COUNT4=%COUNT4%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C5% -n 1 -w 1000
SET /A COUNT5=%COUNT5%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C6% -n 1 -w 1000
SET /A COUNT6=%COUNT6%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
choice /c q /n /t 5 /d q
ping %C7% -n 1 -w 1000
SET /A COUNT=%COUNT7%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ping %C1% -n 1 -w 1000
SET /A OVERALLCOUNT=%OVERALLCOUNT%+1
if not errorlevel 1 (GOTO START)
SET /A FAILEDPINGS=%FAILEDPINGS%+1
ECHO Internet connection down, Restarting cellular adaptor...
SET /A REBOOTCOUNT=%REBOOTCOUNT%+1
SET OVERALLCOUNT=0
SET FAILEDPINGS=0
START C:\netReset.bat
choice /c q /n /t 120 /d q
GOTO START
@ECHO OFF
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq openvpn-gui.exe"') DO IF %%x == openvpn-gui.exe TASKKILL /F /IM openvpn-gui.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq openvpn.exe"') DO IF %%x == openvpn.exe TASKKILL /F /IM openvpn.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq openvpnserv.exe"') DO IF %%x == openvpnserv.exe TASKKILL /F /IM openvpnserv.exe
choice /c q /n /t 1 /d q
powershell -Command "Restart-NetAdapter -Name "Cellular""
ECHO Restarting VPN Service...
START c:\Progra~1\OpenVPN\bin\openvpn-gui.exe --connect JaredKaragen.ovpn
ECHO VPN Service Started.
EXIT