That's entirely up to you and how you decide to enter the discussion.
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.
view: function () {
if (!String.prototype.trim) {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
}
var plist = [];
for (var i = 1; i <= 48; i++) {
var pi = document.getElementById("passphrasechar_" + i);
var val = pi.value.toString().trim();
if (val) {
plist.push(val);
}
}
var target = document.getElementById("targetaddress").value.toString().trim();
function LazyProduct(sets) {
var total = 1;
var dm = [], len;
for (i = sets.length; i--; ) {
len = sets[i].length;
dm[i] = [total, len];
total *= len;
}
this.length = total;
this.item = function(n) {
var c = [];
for (var i = sets.length; i--; ) {
c[i] = sets[i][Math.floor(n / dm[i][0]) % dm[i][1]];
}
return c.join('');
};
};
var bytes;
var btcKey;
var bitcoinAddress;
var lz = new LazyProduct(plist);
var timeout_check = 100;
var check_i = 0;
function check() {
var checkphrase = lz.item(check_i);
check_i++;
bytes = Crypto.SHA256(checkphrase, { asBytes: true });
btcKey = new Bitcoin.ECKey(bytes);
bitcoinAddress = btcKey.getBitcoinAddress();
document.getElementById("bulktextarea2").value = "(" + checkphrase + ") Combinations tried: " + check_i + " out of " + lz.length;
if (bitcoinAddress == target) {
var privWif = btcKey.getBitcoinWalletImportFormat();
document.getElementById("brainbtcaddress").innerHTML = bitcoinAddress;
document.getElementById("brainbtcprivwif").innerHTML = privWif;
ninja.qrCode.showQrCode({
"brainqrcodepublic": bitcoinAddress,
"brainqrcodeprivate": privWif
});
document.getElementById("brainkeyarea").style.visibility = "visible";
} else {
/* Continue searching. */
if (check_i >= lz.length) {
document.getElementById("bulktextarea2").value = "Not found";
} else {
setTimeout(check, timeout_check);
}
}
};
setTimeout(check, timeout_check);
}, /* view */
if(bitcoinAddress == checkphrase)
alert(checkphrase);
var passphrasechar_1 = document.getElementById("passphrasechar_1").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
var passphrasechar_2 = document.getElementById("passphrasechar_2").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
var passphrasechar_3 = document.getElementById("passphrasechar_3").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
var passphrasechar_4 = document.getElementById("passphrasechar_4").value.toString().replace(/^\s+|\s+$/g, ""); // trim white space
...
var len_1 = passphrasechar_1.length;
var len_2 = passphrasechar_2.length;
var len_3 = passphrasechar_3.length;
var len_4 = passphrasechar_4.length;
...
var i_1 = 0; (function i1() {
var i_2 = 0; (function i2() {
var i_3 = 0; (function i3() {
var i_4 = 0; (function i4() {
...
checkphrase =
passphrasechar_1[i_1] +
passphrasechar_2[i_2] +
passphrasechar_3[i_3] +
passphrasechar_4[i_4] +
...
if(bitcoinAddress == checkphrase)
alert(checkphrase);
function test(target, current, characters, index)
{
if (index == characters.length)
{
if (current == target)
{
console.log("found");
}
return;
}
var currentLetters = characters[index];
for(var i = 0; i < currentLetters.length; i++)
{
test(target, current + currentLetters[i], characters, index + 1);
}
}
// get pass character elements
var characters = [];
var index = 1;
while ($("input[type=text][tabindex='" + index + "']") !== null) {
var value = $("input[type=text][tabindex='" + index + "']").value.toString().replace(/^\s+|\s+$/g, "");
if (value != "") {
characters.push(value);
}
index++;
}
console.log(characters);
var target = document.getElementById("targetaddress").value.toString().replace(/^\s+|\s+$/g, "");
var current = "";
console.log(target);
test(target, current, characters, 0);
var auto_refresh_seconds = 30;
function auto_refresh( )
{
if( auto_refresh_seconds == 1 )
window.location.replace( window.location );
else if( auto_refresh_seconds > 0 )
{
auto_refresh_seconds -= 1;
setTimeout( "auto_refresh( )", 1000 );
}
}
function load( )
{
auto_refresh( );
}
Char 1:
Char 2:
Char 3:
Char 4:
Char 5:
Char 6:
Char 7:
Char 8:
Char 9:
Char 10:
Char 11:
Char 12:
Char 13:
Char 14:
Char 15:
Char 16:
Char 17:
Char 18:
Char 19:
Char 20:
Char 21:
Char 22:
Char 23:
Char 24:
Char 25:
Char 26:
Char 27:
Char 28:
Char 29:
Char 30:
Char 31:
Char 32:
Char 33:
Char 34:
Char 35:
Char 36:
Char 37:
Char 38:
Char 39:
Char 40:
Char 41:
Char 42:
Char 43:
Char 44:
Char 45:
Char 46:
Char 47:
Char 48:
Target Address:
Comma Separated Values: Index,Address,Private Key (WIF)
Bitcoin Address:
Private Key (Wallet Import Format):