Bitcoin Forum
June 25, 2024, 06:43:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 ... 554 »
2321  Economy / Collectibles / Re: [PAYMENT TIME][EU][GROUP BUY] Miffman's BitPiece on: July 18, 2016, 05:14:19 PM
Lauda and vizique are both confirmed as paid. Wink
2322  Economy / Collectibles / Re: [EU][GROUP BUY] Miffman's BitPiece [CLOSING] on: July 18, 2016, 04:27:46 PM
Sorry for being late everyone. The group buy is now closed for new participants. The payment address can be found in the OP and I will NOT be sending out PM's with a payment address. The quoted BTC amount is 2% higher than it should be to have a buffer against possible price changes. Leftovers will be returned as always.

Mitchełł: 0,09688230
Lauda: 0,09688230
vizique: 0,20673798
klaaas: 0,10913613
Lutpin: 0,11417298

My excel sheet (with all the calculations) can be found here: Miffman - Group buy.

IMPORTANT: If you want your coins funded, be sure to increase the statement amount by 0,25BTC for each coin that you want to be funded and be sure to mention it to miffman and me.
2323  Economy / Collectibles / Re: [WTT] The Bitcoin Penny Company Doodle / Sketch Collection on: July 13, 2016, 06:50:38 AM
I would love a Pokemon Go doodle with my T-shirt. Grin
2324  Economy / Collectibles / Re: [EU][GROUP BUY] Miffman's BitPiece on: July 12, 2016, 06:42:47 AM
Just so everyone is on the same page, I'm gonna be sending the coins to Mitchell and he will send it to you Smiley

(That is if you accept this last change before you close the group buy Smiley )

I would accept the change if I knew what Poloherb meant with: "add set #4 funded coins". According to your thread Miffman, number #4 is reserved for an auction and does not belong to Poloherb.

I have changed #45 to an unfunded coin and will close this group buy as soon as I know what Poloherb meant.
2325  Economy / Collectibles / Re: Catalogue of Coins on: July 10, 2016, 10:24:43 PM
The most complete catalogue/list is elianite's "Encyclopedia of Physical Bitcoins and Crypto-Currencies". I also keep a list of all my coins and items, but I'm not sure how much that helps you.
2326  Economy / Collectibles / Re: [RAFFLE] Chasing Casascius Gold Plated Bar, Provably Fair--FINISHED! on: July 10, 2016, 08:00:30 PM
Seem like someone claimed the prize already?


https://www.reddit.com/r/Bitcoin/comments/4s2g4b/im_so_excited/

Correct me if I'm missing something here, but a lot of this isn't adding up. According to the link provided by proton for the draw, the winning book number is #13.. Now..
How do we know who has book 13 if buyers have not received their counter party tokens?

Edit: How is this "Provably Fair"?

#13? How did you get #13? This is the result I got from the the script:
Code:
{ 'block height': 420000, hash': '000000000000000002cce816c0ab2c5c269cb081896b7dcb34b8422d6b74ffa1', book number': 3291 }

The picking is fair (not sure if it's provably fair) as it uses a blockchain hash which cannot be known until it exists. As the random function always uses the same seed, the first number will always be the same (allowing us to verify the result). I just ran the script three times to proof this:



This is my (very very slightly edited script):
Code:
var request = require('request');
var RNG = require('rng-js');
var blockNumber = 420000;
request({
url : 'https://bitcoin.toshi.io/api/v0/blocks/' + blockNumber,
method : 'GET',
}, function (error, response, body) {
if (response.statusCode == '404') {
console.log({
"block height" : "block 420,000 is not yet available",
"block hash" : "please check in the future",
"winning book number" : "n/a"
});
} else {
if (error) {
console.log('Error sending message: ', error);
} else if (response.body.error) {
console.log('Error: ', response.body.error);
} else {
var blockInfo = JSON.parse(response.body);
var rng = new RNG(blockInfo.hash);
console.log({
"block height" : blockNumber,
"block hash" : blockInfo.hash,
"winning book number" : rng.random(1, 5000)
});
}
}
});
2327  Other / Archival / Re: Updated Overview of Bitcointalk Signature-Ad Campaigns on: July 10, 2016, 07:36:28 PM
Okay, everything has been updated and should be correct. Thanks for the help everyone, it really saves me a lot of time.
2328  Economy / Collectibles / Re: [CLOSED][GROUP BUY] OPENDIME - Zero-Trust Physical Bitcoin Wallet on: July 10, 2016, 06:35:58 PM
Is there any update about the shipment?
Nope. I recently asked about an update and got the same answer as before. They'll ship somewhere in July.
2329  Economy / Collectibles / Re: *NEW* ASSEMBLED SHIBANU DOGECOIN (90/100 AVAILABLE) on: July 08, 2016, 09:44:48 AM
Ah, shit. I need one as it is slightly different than the two I have.
2330  Other / Archival / Re: Updated Overview of Bitcointalk Signature-Ad Campaigns on: July 08, 2016, 08:35:57 AM
Hello HCP,

Thank you for helping me! I'll check your pastebin link when I get off work and update the OP!
2331  Economy / Collectibles / Re: [RAFFLE] Chasing Casascius Gold Plated Bar, Provably Fair using Block Hash on: July 07, 2016, 05:27:13 PM
No, that's not accurate, because it is a seeded PRNG. If the code called rng.random multiple times after initialization it would give new numbers, but reinitializing it and running it will get the same sequence of numbers. By only showing the first number, we always get the same result.

You can test that code with the hash from block 419,000 and you should get number "610" every time, which was the whole point of showing the code, since we don't know what the hash for 420,000 will be, but can't be manipulated, then we can be confident in this outcome.

This is using node.js with "express" and "request" modules
Ah yes, of course. I'll try out the code in a bit just to be sure.

The spreadsheet associates all addresses with a book number (by row), so this is indistinguishable for your request. I haven't posted the spreadsheet yet as I haven't gotten addresses from everyone. Purchasers should be able to see their own address via their browsers "find" function. All the addresses will receive counterparty tokens and the winning address holder will also get the gold bar shipped to them.
That does not answer my question, so I'm asking you again, what happens when the winning number is a number of a book that hasn't been sold. I know what you are going to do, but if a book isn't sold have nowhere to ship the bar to as nobody can claim it.




EDIT: I just tried out the code and it does indeed output 610.
2332  Economy / Goods / Re: Quality T-Shirts for $4.99! Check here for more! on: July 07, 2016, 05:23:24 PM
I've got my shirt today and the material feels great. Thanks! Grin
2333  Economy / Collectibles / Re: [RAFFLE] Chasing Casascius Gold Plated Bar, Provably Fair using Block Hash on: July 07, 2016, 10:13:42 AM
Wait. won't "rng.random(1, 5000)" generate a new number on each and every request? If so you could just keep making calls to the site until you have a result you like and show us that or in other words this isn't provably fair.

Also, did you sell all 5000 books? If not, what happens if the winner is a book that hasn't been sold yet?
2334  Other / Beginners & Help / MOVED: Forum Question on: July 04, 2016, 08:21:09 PM
This topic has been moved to Meta.

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

Question about the website means it belongs in Meta
2335  Economy / Collectibles / Re: [EU][GROUP BUY] Miffman's BitPiece on: July 04, 2016, 08:52:07 AM
Not sure what number i get but i will get mine to MJ Smiley
Please do not reply in this thread if your coins go to MJ as I won't keep track of them. Please post in his thread instead: [GROUP BUY - USA] BitPiece Coins

Load me in, have ordered 2 on Miffmans thread Smiley
You are already in the OP. Grin
2336  Economy / Auctions / Re: Set of 3 Bitpieces - #5 on: July 03, 2016, 10:59:53 PM
0.01BTC
2337  Economy / Collectibles / Re: Introducing the BitPiece! Reservations are open! on: July 03, 2016, 09:43:28 PM
#25 plz !  Grin to late hmmzz

Lowest !

25 is taken! The lowest is 13, but it has a defect. Let me know if this is okay!


MJ has #13 according to your list.
2338  Economy / Collectibles / Re: [EU][GROUP BUY] Miffman's BitPiece on: July 03, 2016, 09:27:32 PM
Very very important note

You need to reserve your coins on Miffman's thread! If you don't, you won't get anything!

Please do not reply in this thread if your coins go to MJ as I won't keep track of them. Please post in his thread instead: [GROUP BUY - USA] BitPiece Coins. Smiley
2339  Economy / Collectibles / [OFFICIALLY OVER][EU][GROUP BUY] Miffman's BitPiece on: July 03, 2016, 09:26:12 PM
Hello everyone,

Miffman released his own coin so I'm doing another group buy! Same terms and shipping costs as last time. You all should know the drill by now. Grin

Pictures of the new coins
       


Prices
Please look at miffman's thread for the latest prices.

Shipping from miffman to me is a fixed $50.


Shipping
The Netherlands: €8.15
Rest of Europe: €11.50
Both are Registered mail with Track & Trace included.


Extra costs
  • We need to pay VAT to import the BitPiece's into The Netherlands, which is the largest extra cost we have (we do not have to pay import costs).
  • The disbursement fee of the used postal service (UPS charges €11.25, PostNL €13, EMS €17,50, etc.).
  • The bubblewrapped envelopes


Terms
  • The group buy won't happen if not at least 5 coins are ordered.
  • The group buy will be closed, for new participants, when we hit 50 coins or on the 10th of July.
  • Once the group buy is closed for new participants the final price will be determined and split between the participants.
  • Any BTC that is left over (because the package wasn't checked, the BTC value went up, etc) will be evenly distributed between the participants.
  • If we are somehow short of BTC, I'll cover it up front. The amount of BTC will be evenly distributed between participants. Your package won't be sent if you don't pay your part of the debt. If you don't pay at all, your BitPiece will be auctioned off to cover the cost and any leftovers are kept.
  • Terms can be changed at any moment, so please keep track of them (important announcement will be posted in the thread).


Join the group buy
If you want to join, please tell me your Bitcoin forum name, country and how many you want. You also need to reserve your coins on Miffman's thread! If you don't, you won't get anything!

Username : Country : Amount
Mitchell : The Netherlands : 1x BitPiece (#60)
Lauda : - : 1x BitPiece (#25)
minerjones : USA : 30 BitPiece's (#13, #75 and whatever is left)
vizique : UK : 2x Bitpiece's (#12 funded, #14)
klaaas : The Netherlands : 1x BitPiece (#46)
Lutpin : Germany : 1x BitPiece (#94)

45 coin(s) right now.


Payment address
Payments must be send to "1A1cU8hEmANJnJGZWSr3bBZp2rZPTHAyaB". I will NOT send you a PM asking for payment.

For payment amounts, please see this post.
2340  Economy / Speculation / MOVED: 100k after halving on: July 03, 2016, 08:47:42 PM
This topic has been moved to Trashcan.

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

Zero value post
Pages: « 1 ... 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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 ... 554 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!