Bitcoin Forum
July 07, 2024, 08:15:32 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 [90] 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 ... 151 »
1781  Economy / Gambling / [CLOSED] Win a Butterfly Labs Bitforce Single on: April 28, 2012, 12:13:59 AM
Hello fellow bitcoiners,

Off the back of the successful raffle of a 50Gh 1 week mining contract, I am proud to offer a new raffle to all of my fellow mining enthusiasts!


Welcome to the Butterfly Labs Bitforce Single raffle!


You read that right. I am ready to raffle one of my BFL singles away. Each ticket is only .25 BTC each!

Imagine, turning .25 BTC into a Butterfly Labs Bitforce single, a return of at least 480 times the cost of a single ticket.

So you’re probably wondering, “how can I verify that gigavps has a single to raffle off?”

My fifteen singles hashing away -> http://bit.ly/Ix3ktV
Gigavps’ farm monitoring page (all the singles are on rig 100) -> http://bit.ly/IxUZns


Rules of the contest:

  • The odds of winning this raffle is 1 / (total # of tickets sold)
  • This raffle will end on Friday, May 4, 2012 at 5pm EST.
  • You may purchase as many tickets as you like.
  • Whether buying a single ticket or bulk tickets, each ticket will have its own ticket number and therefore a unique hash.
  • The only piece of information you need to submit is your email address. This will be hashed so it will not be given out to the public.
  • The raffle will be decided by:
    • We will combine the SHA256 hash of each email address with the hash of your ticket number and the first block hash to be found after the raffle ends. Here is an example:
    • sha(sha(email) + sha(ticketNumber) + hashOfBlockFound)
    • The lowest hash wins!
  • Once the results of the raffle have been verified, the single will be shipped to the new owner within 48 hours.

Enjoy and good luck!

Best regards,
gigavps
1782  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 11:10:17 PM
ah thanks, bummer i did not win, but i will try again next time!!

Speaking of next time, how often would you like to see raffles on the forums?

I want to raffle off a BFL single and I will, but I'm wondering about the timing.
1783  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 10:44:56 PM
and how do we know who had ticket #562?


Ah, I see what you're asking.

Well cncguru claims to be the winner. If you know the email that he used when he purchased the ticket, you could check the sha256 has to see if it matches. That would confirm the email hash part of the Winning Equation.

I do not know how the ticket numbers were issued and when placed for the second part of the equation.

The third part was just the block hash.



cncguru has confirmed he owns the address that purchased the tickets.

As for ticket numbers, they are based on the sequence in which orders came in to bit-pay.
1784  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 10:41:19 PM
and how do we know who had ticket #562?

Hi arij,

Please look back through the thread on pages 8 and 9.

Thanks,
gigavps
1785  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 10:37:09 PM
OK, wow that was fun!!!

Now how about a raffle for a mini rig box???

(BFL has to deliver one first I guess,LOL)


 Grin Grin Grin Grin Grin Grin Grin

cncguru has verified that he is owner of the email address that purchased the winning ticket.

Amazingrando and I offered him two options:

1. Mining with the hashing power for a week at the pool of his choice.
2. Take a payout right now of 110% PPS to current difficulty.

cncguru chose option #2.

http://blockchain.info/tx-index/4499138/9c755b8bf077dcf514e5cd338686c6db55f21f346d060c1103bbf3a54b65e4c8

http://blockchain.info/tx-index/4499171/a0b9120b4dd3899093b22c6a2b625c5846ad2b252092065ca9e4f60ac243b07a

Thanks again to everyone for playing!
1786  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 09:24:30 PM
If the winner could please contact me via PM so that I can verify they own the email address, I would appreciate it.

We have a mining contract to fulfill!

Thanks to everyone for playing and I wanted to ask you guys a question.......

Would you be interested in a raffle for a BFL single?
1787  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 09:17:51 PM
http://pastebin.com/KRuYZc73

Ordered from Lowest Hash in CSV format.

Looks like we have independent verification and I can confirm ticket #562 is the winner!

I used a little javascript to verify so that it is more accessible to others.

Code:
(function($) {

$(document).ready(function() {

var   $body = $('body')
, text = $body.text()
, lines = text.split('\n')
, lowest = null
, lowestTicket = null
, decimal
, lineArr;

for (var i = 0; i < 885; i++)
{
lineArr = lines[i].split('\t');
decimal = parseInt(lineArr[lineArr.length - 1], 16);

if (lowest === null)
lowest = decimal;
else if (decimal < lowest)
{
lowest = decimal;
lowestTicket = lineArr[0];
}
}

alert(lowestTicket);
});

})(jQuery);

And the HTML page needed

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/ecmascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/ecmascript" src="script.js"></script>
</head>

<body>{output from pastebin}</body>
</html>

1788  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 07:59:44 PM
I am working on calculating the winner now.

+ in my posts above is string concat
1789  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 07:48:58 PM
See this post for how to calculate a hashes value -> https://bitcointalk.org/index.php?topic=29675.msg372807#msg372807

Remember, lowest one wins!
1790  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 07:47:47 PM
Block 177473 has arrived!

Here are the results -> http://pastebin.com/Tgv098AW

5 columns now (ticket number, email hash, ticket number hash, blockHash, final hash)

The final hash was calculated by: sha(sha(email) + sha(ticketNumber) + hashOfBlockFound)

Let's see who won!
1791  Other / Beginners & Help / Re: [CLOSED] Win a 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 07:12:31 PM
The raffle is now close.

Please follow this thread for winner details -> https://bitcointalk.org/index.php?topic=77442.msg871603#msg871603
1792  Economy / Marketplace / Re: [CLOSED] 50Gh 1 week mining contract worth ~230 BTC on: April 27, 2012, 07:10:44 PM
All entries for the raffle can be found here -> http://pastebin.com/kb0vmvgQ

Use this service to figure out the hash of your email -> http://hash.online-convert.com/sha256-generator

Once you have the hash, you can search the paste bin text for your tickets.

There are three columns, ticket number, hashed email address and hashed ticket number.

Block number 177473 will determine the final hashes for all tickets.
1793  Economy / Marketplace / Re: [RAFFLE] 50Gh 1 week mining contract worth ~230 BTC - 3 HOURS Remaining!! on: April 27, 2012, 05:29:16 PM
So, if the time is up now, can we have a table before the first hash block, so any manipulation is out of the question?

Edit: sorry my error with time zones. Smiley

In any case I think it should be nice to have the table  published immediately after the raffle closes.


So things should happen in this order:

1. 3pm arrives
2. We shut down all purchase buttons
3. We publish the hashed emails with ticket numbers and ticket hashes
4. We declare the block hash that will become the third part of the final hash for each ticket
5. Block arrives
6. Publish the results with the block hash and final hash without determining a winner
7. Allow third parties to declare which final hash is the winner
8. Verify third party results
1794  Other / Beginners & Help / Re: Win a 50Gh 1 week mining contract worth ~230 BTC - 5 HOURS Remaining! on: April 27, 2012, 01:48:38 PM
With ~5 hours to go, your odds of winning the pot are now:

1/827

Good luck to everyone who has already purchased a ticket. Better hurry if you haven't bought yours yet!
1795  Economy / Marketplace / Re: [RAFFLE] 50Gh 1 week mining contract worth ~230 BTC - 8 HOURS Remaining!! on: April 27, 2012, 01:47:21 PM
How many more hours?

With ~5 hours to go, your odds of winning the pot are now:

1/827

Good luck to everyone who has already purchased a ticket. Better hurry if you haven't bought yours yet!
1796  Other / Beginners & Help / Re: Win a 50Gh 1 week mining contract worth ~230 BTC - 8 HOURS Remaining! on: April 27, 2012, 01:45:53 PM
I bought 801 tickets. What are my odds?

Sounds like Matthew really wants to get into mining.....
1797  Other / Beginners & Help / Re: Win a 50Gh 1 week mining contract worth ~230 BTC - 8 HOURS Remaining! on: April 27, 2012, 10:32:01 AM
With ~8 hours to go, your odds of winning the pot are now:

1/802

Good luck to everyone who has already purchased a ticket. Better hurry if you haven't bought yours yet!
1798  Economy / Marketplace / Re: [RAFFLE] 50Gh 1 week mining contract worth ~230 BTC - 8 HOURS Remaining!! on: April 27, 2012, 10:30:55 AM
With ~8 hours to go, your odds of winning the pot are now:

1/802

Good luck to everyone who has already purchased a ticket. Better hurry if you haven't bought yours yet!
1799  Economy / Marketplace / Re: *BitLotto* is seeking multiple *private investors* for total of 800 BTC!! on: April 26, 2012, 10:30:41 PM
I think bitlotto is seeing that interesting pots like my shameless plug below can make money.  Smiley

https://bitcointalk.org/index.php?topic=77442.0

The problem I see is asking others to invest quite large sums of money for such small returns. The lending subforum easily offers 1.5% for your coins per week with relatively well established players.
1800  Other / Beginners & Help / Re: Win a 50Gh 1 week mining contract worth ~230 BTC - 21 HOURS Remaining! on: April 26, 2012, 10:00:51 PM
With ~21 hours to go, your odds of winnning the pot are now:

1/773

Good luck to everyone who had already purchased a ticket.
Pages: « 1 ... 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 [90] 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 ... 151 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!