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.
#define C_1_INDEX 46
#define C_2_INDEX 47
#define C_3_INDEX 48
#define C_4_INDEX 49
#define C_5_INDEX 50
int main (void) {
const char *chars = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
char addr[100];
strcpy(addr, "5Ht1xbx9coyDSTfpGWn882wdZSwTNmMUzfwd1amRpYUZs8-----");
Test: Sq...1.940186s
Test: Sr...1.935791s
Test: Ss...1.942627s
Test: St...1.931152s
Test: Su...1.919434s
Test: Sv...
FOUND: 5Ht1xbx9coyDSTfpGWn882wdZSwTNmMUzfwd1amRpYUZs8Sv7H9
int c1 = 0, c2 = 0, c3 = 0, c4 = 0, c5 = 0, status;
float startTime, endTime;
for (c1 = 0; c1 < 58; c1++) {
addr[C_1_INDEX] = chars[c1];
for (c2 = 0; c2 < 58; c2++) {
addr[C_2_INDEX] = chars[c2];
printf("Test: %c%c...", chars[c1], chars[c2]);fflush(stdout);
startTime = (float)clock()/CLOCKS_PER_SEC;
for (c3 = 0; c3 < 58; c3++) {
addr[C_3_INDEX] = chars[c3];
for (c4 = 0; c4 < 58; c4++) {
addr[C_4_INDEX] = chars[c4];
for (c5 = 0; c5 < 58; c5++) {
addr[C_5_INDEX] = chars[c5];
status = valid(addr);
if (status) {
printf("\nFOUND: %s\n", addr);
return 1;
}
}
}
}
endTime = (float)clock()/CLOCKS_PER_SEC;
printf("%fs\n", (endTime-startTime));
}
}
int c1 = 0, c2 = 0, c3 = 0, c4 = 0, c5 = 0, status;
float startTime, endTime;
for (c1 = 0; c1 < 58; c1++) {
addr[C_1_INDEX] = chars[c1];
for (c2 = 0; c2 < 58; c2++) {
addr[C_2_INDEX] = chars[c2];
printf("Test: %c%c...", chars[c1], chars[c2]);fflush(stdout);
startTime = (float)clock()/CLOCKS_PER_SEC;
for (c3 = 0; c3 < 58; c3++) {
addr[C_3_INDEX] = chars[c3];
for (c4 = 0; c4 < 58; c4++) {
addr[C_4_INDEX] = chars[c4];
for (c5 = 0; c5 < 58; c5++) {
addr[C_5_INDEX] = chars[c5];
status = valid(addr);
if (status) {
printf("\nFOUND: %s\n", addr);
return 1;
}
}
}
}
endTime = (float)clock()/CLOCKS_PER_SEC;
printf("%fs\n", (endTime-startTime));
}
}