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.
e889acf0504e_randompadding#gJ7n39u5
e889acf0504e_randompadding#gJ7n39u5
e889acf0504e_randompadding#gJ7n39u5
e889acf0504e_randompadding#gJ7n39u5
int pickWinner {
return "Mooshire"
//chosen by questionable name out of hat
//guaranteed to be completely legit
}
/*
* Coinroll.it giveaway script (https://bitcointalk.org/index.php?topic=197242.0)
* A 64-bit build of PHP is required
*/
$modulo = hexdec('ffffffffffff');
// Change this to the secret ID once it is released
$secretId = hexdec('aaaaaaaaaaaa');
// Player bets go here
$data = '
aaaaaaaaaaaa Player1
bbbbbbbbbbbb Player2
cccccccccccc Player3
';
$playerDistances = array();
function arithmeticMod($x, $m)
{
if ($m < 0) $m = -$m;
$r = $x % $m;
return ($r < 0) ? $r + $m : $r;
}
function modDistance($a, $b, $m)
{
return min(arithmeticMod($a - $b, $m), arithmeticMod($b - $a, $m));
}
$players = explode("\n", $data);
foreach($players as $player)
{
if (strlen($player) < 12) continue;
list($id, $name) = explode(' ', $player, 2);
$playerDistances[$name] = modDistance(hexdec($id), $secretId, $modulo);
}
asort($playerDistances);
echo "Player Distance\n---------------------------------------------------\n";
foreach($playerDistances as $name => $distance)
{
echo str_pad($name, 25) . $distance . "\n";
}
?>