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.
mysql> select darts_section.comment,darts_section.amtback,count(darts_section.id) from darts_board left join darts_section on darts_board.section=darts_section.id group by darts_section.id order by amtback desc;
+-----------------+---------+-------------------------+
| comment | amtback | count(darts_section.id) |
+-----------------+---------+-------------------------+
| Double Bullseye | 1000 | 116 |
| Blue Triple | 600 | 781 |
| Bullseye | 500 | 566 |
| Blue Double | 400 | 1226 |
| Purple Triple | 360 | 1006 |
| Cyan Triple | 300 | 1026 |
| Purple Double | 240 | 1555 |
| Blue | 200 | 5221 |
| Cyan Double | 200 | 1600 |
| Red Triple | 150 | 972 |
| Purple | 120 | 7076 |
| Cyan | 100 | 7116 |
| Red Double | 100 | 1556 |
| Green Triple | 60 | 1259 |
| Red | 50 | 6632 |
| Green Double | 40 | 2194 |
| Green | 20 | 8365 |
| Off the Board | 0 | 17269 |
+-----------------+---------+-------------------------+
18 rows in set (0.30 sec)
mysql> select darts_section.comment,darts_section.amtback*count(darts_section.id)/65536 as payoutpct from darts_board left join darts_section on darts_board.section=darts_section.id group by darts_section.id order by amtback desc;
+-----------------+-----------+
| comment | payoutpct |
+-----------------+-----------+
| Double Bullseye | 1.7700 |
| Blue Triple | 7.1503 |
| Bullseye | 4.3182 |
| Blue Double | 7.4829 |
| Purple Triple | 5.5261 |
| Cyan Triple | 4.6967 |
| Purple Double | 5.6946 |
| Blue | 15.9332 |
| Cyan Double | 4.8828 |
| Red Triple | 2.2247 |
| Purple | 12.9565 |
| Cyan | 10.8582 |
| Red Double | 2.3743 |
| Green Triple | 1.1526 |
| Red | 5.0598 |
| Green Double | 1.3391 |
| Green | 2.5528 |
| Off the Board | 0.0000 |
+-----------------+-----------+
18 rows in set (0.25 sec)
mysql> select sum(amountout)/sum(amountin) from darts_transaction where status>7;
+------------------------------+
| sum(amountout)/sum(amountin) |
+------------------------------+
| 0.943374072162 |
+------------------------------+
1 row in set (0.00 sec)
$im = @imagecreatefrompng("5x2ki8jf.png");
$imx = imagesx($im);
$imy = imagesy($im);
$odds = 65535;
$pixels = array(
"Bullseye" => array("count" => 0, "pays" => 5),
"Double Bullseye" => array("count" => 0, "pays" => 10),
"Blue" => array("count" => 0, "pays" => 2),
"Blue Inner" => array("count" => 0, "pays" => 6),
"Blue Outer" => array("count" => 0, "pays" => 4),
"Purple" => array("count" => 0, "pays" => 1.2),
"Purple Inner" => array("count" => 0, "pays" => 3.6),
"Purple Outer" => array("count" => 0, "pays" => 2.4),
"Cyan" => array("count" => 0, "pays" => 1),
"Cyan Inner" => array("count" => 0, "pays" => 3),
"Cyan Outer" => array("count" => 0, "pays" => 2),
"Red" => array("count" => 0, "pays" => .5),
"Red Inner" => array("count" => 0, "pays" => 1.5),
"Red Outer" => array("count" => 0, "pays" => 1),
"Green" => array("count" => 0, "pays" => .2),
"Green Inner" => array("count" => 0, "pays" => .6),
"Green Outer" => array("count" => 0, "pays" => .4),
"Outside" => array("count" => 0, "pays" => 0),
"Black" => array("count" => 0, "pays" => 0)
);
for ($y = 0; $y <= $imy; $y++) {
for ($x = 0; $x <= $imx; $x++) {
$color_index = imagecolorat($im, $x, $y);
$color = imagecolorsforindex($im, $color_index);
$r = $color["red"];
$g = $color["green"];
$b = $color["blue"];
$a = $color["alpha"];
if ($r == 0 && $g == 0 && $b == 0 && $a == 127) $pixels["Outside"]["count"]++;
else if ($r == 0 && $g == 0 && $b == 0 && $a == 0) $pixels["Black"]["count"]++;
else if ($r == 74 && $g == 74 && $b == 255 && $a == 0) $pixels["Blue Outer"]["count"]++;
else if ($r == 255 && $g == 66 && $b == 66 && $a == 0) $pixels["Red Outer"]["count"]++;
else if ($r == 130 && $g == 254 && $b == 255 && $a == 0) $pixels["Cyan Outer"]["count"]++;
else if ($r == 255 && $g == 74 && $b == 253 && $a == 0) $pixels["Purple Outer"]["count"]++;
else if ($r == 0 && $g == 0 && $b == 255 && $a == 0) $pixels["Blue"]["count"]++;
else if ($r == 255 && $g == 0 && $b == 0 && $a == 0) $pixels["Red"]["count"]++;
else if ($r == 0 && $g == 252 && $b == 255 && $a == 0) $pixels["Cyan"]["count"]++;
else if ($r == 255 && $g == 0 && $b == 252 && $a == 0) $pixels["Purple"]["count"]++;
else if ($r == 77 && $g == 255 && $b == 77 && $a == 0) $pixels["Green Outer"]["count"]++;
else if ($r == 0 && $g == 255 && $b == 0 && $a == 0) $pixels["Green"]["count"]++;
else if ($r == 0 && $g == 0 && $b == 180 && $a == 0) $pixels["Blue Inner"]["count"]++;
else if ($r == 189 && $g == 0 && $b == 0 && $a == 0) $pixels["Red Inner"]["count"]++;
else if ($r == 0 && $g == 179 && $b == 181 && $a == 0) $pixels["Cyan Inner"]["count"]++;
else if ($r == 181 && $g == 0 && $b == 179 && $a == 0) $pixels["Purple Inner"]["count"]++;
else if ($r == 0 && $g == 181 && $b == 0 && $a == 0) $pixels["Green Inner"]["count"]++;
else if ($r == 189 && $g == 125 && $b == 0 && $a == 0) $pixels["Bullseye"]["count"]++;
else if ($r == 255 && $g == 168 && $b == 0 && $a == 0) $pixels["Double Bullseye"]["count"]++;
//else if ($r == && $g == && $b == && $a == 0) $pixels[""]["count"]++;
else echo "$r $g $b $a
";
}
}
echo "Color # Pixels Chance Payout ";
foreach ($pixels as $color => $data) {
?>
echo $color; ?>
echo $data["count"]; ?>
echo number_format($data["count"] / $odds * 100, 2); ?>%
echo $data["pays"] * 100; ?>%
} ?>
Color # Pixels Chance Payout
Double Bullseye 72 0.11% 1000%
Blue Inner 655 1.00% 600%
Bullseye 440 0.67% 500%
Blue Outer 760 1.16% 400%
Purple Inner 780 1.19% 360%
Cyan Inner 839 1.28% 300%
Purple Outer 923 1.41% 240%
Blue 4796 7.32% 200%
Cyan Outer 984 1.50% 200%
Red Inner 792 1.21% 150%
Purple 5622 8.58% 120%
Cyan 6173 9.42% 100%
Red Outer 958 1.46% 100%
Green Inner 1122 1.71% 60%
Red 5812 8.87% 50%
Green Outer 1282 1.96% 40%
Green 8196 12.51% 20%
Outside 16156 24.65% 0%
Black 9687 14.78% ?%
Color # Pixels Chance Payout
Double Bullseye 72 0.13% 1000%
Blue Inner 655 1.17% 600%
Bullseye 440 0.79% 500%
Blue Outer 760 1.36% 400%
Purple Inner 780 1.40% 360%
Cyan Inner 839 1.50% 300%
Purple Outer 923 1.65% 240%
Blue 4796 8.59% 200%
Cyan Outer 984 1.76% 200%
Red Inner 792 1.42% 150%
Purple 5622 10.07% 120%
Cyan 6173 11.05% 100%
Red Outer 958 1.72% 100%
Green Inner 1122 2.01% 60%
Red 5812 10.41% 50%
Green Outer 1282 2.30% 40%
Green 8196 14.68% 20%
Outside 16156 28.93% 0%