Pages:
Author

Topic: 5 BTC giveaway! (Ended) (Read 6134 times)

hero member
Activity: 686
Merit: 500
May 22, 2013, 01:08:51 PM
hero member
Activity: 854
Merit: 1000
May 21, 2013, 06:16:33 PM
Same here.  Thanks, Scrat!
full member
Activity: 130
Merit: 100
May 21, 2013, 05:07:55 AM
#99
I confirm that I have received the prize from Scrat Acorns.

I wish Coinroll.it to become a big success, he has built a great site that will beat all the inferior competitors! SatoshiDice should be very afraid!

I will personally be using Coinroll.it when demonstrating bitcoin to new people. Usually, I give them some mBTC, so there's not enough money to buy anything, but they can donate or gamble.
sr. member
Activity: 363
Merit: 285
May 21, 2013, 12:58:01 AM
#98
It's over!

The ID was e889acf0504e

The hashed message was
Code:
e889acf0504e_randompadding#gJ7n39u5

Script that was used

The output


Winners:
Pokerfan: 3 BTC
danieldaniel: 1 BTC
kuriboh: 1 BTC

I will PM the winners.


Wow!!! I won!!! Great day today Cheesy
legendary
Activity: 1199
Merit: 1012
May 20, 2013, 11:32:26 PM
#97
Your service is great, but please lock the thread. I don't want to read about my failure again and again Smiley
sr. member
Activity: 322
Merit: 250
May 20, 2013, 10:58:11 PM
#96
It's over!

The ID was e889acf0504e

The hashed message was
Code:
e889acf0504e_randompadding#gJ7n39u5

Script that was used

The output


Winners:
Pokerfan: 3 BTC
danieldaniel: 1 BTC
kuriboh: 1 BTC

I will PM the winners.

You spelled Mooshire wrong.
hero member
Activity: 798
Merit: 500
Time is on our side, yes it is!
May 20, 2013, 09:40:49 PM
#95
 damn thought i had more time congrats winners

edit: nice site I won my first play then lost it all in 3 bets   Cheesy
legendary
Activity: 2940
Merit: 1330
May 20, 2013, 08:36:05 PM
#94
Winners:
Pokerfan: 3 BTC
danieldaniel: 1 BTC
kuriboh: 1 BTC

I will PM the winners.

Congrats to the winners.

My strategy failed me; I made a list of all the entries, found the biggest 'gap' between them, and played until I had a bet ID that fell near the middle of that biggest gap, thus maximising my chance of winning.
hero member
Activity: 854
Merit: 1000
May 20, 2013, 08:11:03 PM
#93
It's over!

The ID was e889acf0504e

The hashed message was
Code:
e889acf0504e_randompadding#gJ7n39u5

Script that was used

The output


Winners:
Pokerfan: 3 BTC
danieldaniel: 1 BTC
kuriboh: 1 BTC

I will PM the winners.
Yaysicles!  1NJzhk5xBBrgYtGxJaDURxubCt7KYTNP4o
sr. member
Activity: 293
Merit: 250
May 20, 2013, 07:59:29 PM
#92
It's over!

The ID was e889acf0504e

The hashed message was
Code:
e889acf0504e_randompadding#gJ7n39u5

Script that was used

The output


Winners:
Pokerfan: 3 BTC
danieldaniel: 1 BTC
kuriboh: 1 BTC

I will PM the winners.
member
Activity: 65
Merit: 10
May 20, 2013, 07:28:35 PM
#91
7bd155ee7c66
member
Activity: 91
Merit: 10
May 20, 2013, 06:18:15 PM
#90
41d3f126f968

legendary
Activity: 2940
Merit: 1330
May 20, 2013, 05:35:25 PM
#89
dooglus, did you see that roll?!  244 haha nice first roll... if only i had known.

Yeah, it kind of sucks when you win so convincingly.  Because you could have won so much more if only you had been braver.  Smiley
sr. member
Activity: 322
Merit: 250
May 20, 2013, 05:16:10 PM
#88
I disagree with this drawing script. Needs to be more like

Code:
int pickWinner {
return "Mooshire"
//chosen by questionable name out of hat
//guaranteed to be completely legit
}
newbie
Activity: 32
Merit: 0
May 20, 2013, 03:36:18 PM
#87
dooglus, did you see that roll?!  244 haha nice first roll... if only i had known.

And yes thank you for the correction:  bet ID = fc4aef71b103
legendary
Activity: 2940
Merit: 1330
May 20, 2013, 03:25:36 PM
#86
LOVE IT!

55000fc4aef71b103

I think you mean https://coinroll.it/bet/fc4aef71b103

< 55000 is the game you were playing (and it's far too close to my entry, 553098633cb8 ! Wink )
newbie
Activity: 32
Merit: 0
May 20, 2013, 01:24:38 PM
#85
LOVE IT!

55000fc4aef71b103
sr. member
Activity: 293
Merit: 250
May 20, 2013, 01:06:16 PM
#84
sr. member
Activity: 322
Merit: 250
May 20, 2013, 12:58:33 PM
#83
Obligatory xkcd

http://xkcd.com/221/
sr. member
Activity: 293
Merit: 250
May 20, 2013, 12:54:01 PM
#82
Here's the script I'll be using tonight at midnight (GMT) to pick the winners:

Code:

/*
 * 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(' '$player2);
$playerDistances[$name] = modDistance(hexdec($id), $secretId$modulo);
}

asort($playerDistances);

echo 
"Player                   Distance\n---------------------------------------------------\n";

foreach(
$playerDistances as $name => $distance)
{
echo str_pad($name25) . $distance  "\n";
}

?>

Pages:
Jump to: