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.
block#10795: 356 GB read (1462000 nonces read) best deadline: 2128895s (2128806s left)
block#10796: 0 GB read (34 nonces read) best deadline: 139491149230s (139491149222s left)
Could not get mining info from Node. Will retry..
Could not get mining info from Node. Will retry..
Could not get mining info from Node. Will retry..
Could not get mining info from Node. Will retry..
Could not get mining info from Node. Will retry..
Could not get mining info from Node. Will retry..
block#10797: 68 GB read (281763 nonces read) best deadline: 139491149230s (139491149099s left)
block#10798: 362 GB read (1486000 nonces read) best deadline: 917161s (917052s left)
LINE 72:
// Buffer to read the passphrase to
char passphrase[/*2001*/6001];
LINE 372:
#if 0
for( i=0; iif( passphrase[i] == ' ' )
passphrase[i] = '+';
// end on newline
if( passphrase[i] == '\n' )
passphrase[i] = 0;
}
#else
{
char work[6001];
long result = 0;
char *p = NULL;
long loop1;
p = work;
for (loop1=0; loop1 < bytes; loop1++) {
result = isalnum(passphrase[loop1]);
if (result == 0) {
if (passphrase[loop1] != 0xa) { /* if not newline. */
sprintf(p, "%%%x", passphrase[loop1]);
p+=3;
}
} else {
*p = passphrase[loop1];
p++;
}
}
bytes = p - work;
memcpy(passphrase, work, bytes);
}
#endif