Win one of these awesome and limited edition Goxxed for the last time?! physical coins!
Rules and how to enter the raffle
1. Each ticket is 0.002BTC (approx 50 cents).
2. Send the correct multiple of 0.002 to: 1P2BAztKxtk7VWGY93XMJUZsFJH32ydy15
3. Post the number of tickets purchased and corresponding tx id in this thread, any other posts will be ignored unless they are genuine questions that need answering.
4. In exactly one week's time the winner will be picked at random and announced. The winner provides a postage address and the coin will be sent within 3 working days. Winner chooses gold or silver platingThis is a new endeavour for me, if it is popular I may write a way to automate the process on my site. Right now each entry will be manually entered into an array/list and then picked at random using a
python PHP script to assure impartiality and fairness.
I plan on doing this every week/every other week as my schedule dictates.
Have fun, thanks for participating and good luck!
Current list of entries:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>untitled</title>
</head>
<body>
<?php
//set entries of contestents:
$raffletickets = array(
"TookDK",
"batesresearch",
"feedo",
"feedo",
"feedo",
"feedo",
"minerjones",
"minerjones",
"minerjones",
"minerjones",
"minerjones",
"batesresearch",
"batesresearch",
"batesresearch",
"feedo",
"feedo",
"feedo",
"feedo",
"feedo",
);
//confirm number of tickets:
echo "Number of entries: ".count($raffletickets).'</br>';
//randomly choose winner and print results:
$range = rand(0,(count($raffletickets)-1));
echo "Winning entry number: ".($range+1)."</br>";
echo "Winner: ".$raffletickets[$range];
?>
</body>
</html>