Bitcoin Forum
June 28, 2024, 05:17:35 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 [497] 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 ... 573 »
9921  Economy / Long-term offers / Re: Starfish BCB - Loans and Deposits on: November 15, 2012, 03:31:53 AM
I didn't receive a payment this week or last week.  Did I miss an announcement about this, or is it an oversight?
9922  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 15, 2012, 03:25:13 AM
Couple of issues with the withdraw box:

1) green on green isn't a very readable choice, especially when the text is small and can't be zoomed or selected

2) after successfully withdrawing, the withdraw dialog stays open; it seems to me that most people won't want to make more than one withdrawal at a time, so the box should close once you've used it

9923  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 14, 2012, 10:11:08 PM
I think I just found another bug.

I placed 2 bets, one after the other.

In both cases I copy/pasted the bet amount rather than typing it.  The amount I pasted in both cases was 0.06451209.

Both bets won, but they won different amounts, which is just odd.  I noticed this on the roller screen.

So I checked on blockchain.info to see what was going on.  It turns out that even though I definitely used the same bet amount both times, the SD roller placed 2 differently sized bets.  The first one was 0.06401209 which is 0.0005 less than I requested, and the 2nd was 0.06451209 as requested.

I had over 8 BTC in my roller wallet at the time, with enough confirmed that it the balance shouldn't be an issue.


Edit: Please disregard.  I'm entirely mistaken about what I copy/pasted...
9924  Economy / Gambling / Re: A delightfully simple spin-the-wheel game (that's provably fair) on: November 14, 2012, 09:57:25 PM
According to some simulations I've run, the house edge for this game is around 4%:

average return over 20000 games is 0.965675
average return over 20000 games is 0.951625
average return over 20000 games is 0.961850
average return over 100000 games is 0.960370

Code:
#!/usr/bin/env python

import MersenneTwister19937

import random, string

class KingCoin:
    def __init__(self):
        seed = random.randint(0, 2**60)
        self.mt = MersenneTwister19937.MersenneTwister19937(seed)

        self.FOUR_DIFFERENT = 3 # 4 different colors in 4 spins
        self.SIX_SPINS = 2.5 # 6 spins, any color
        self.THREE_IN_ROW = 2 # 3 in a row
        self.THREE_OF_FIVE = 1.5 # 3 out of 5 (needs 5 non-black spins to pay)
        self.LOSE = 0 # spinning black = lose

    def play_once(self):
        wheel = '1'*3 + '0'*450
        wheel = [150] + map(lambda x: len(x)+100, string.split(self.mt.shuffle_string(wheel), '1'))
        n = 0
        spots = []
        for c in wheel:
            spots += c*[n]
            if (n == 0):
                n += 1
            else:
                n *= 2

        self.spots = self.mt.shuffle(spots)[:6]
        s0, s1, s2, s3, s4, s5 = self.spots

        # 3 spins
        if s0==0 or s1==0 or s2==0: return self.LOSE
        if s0==s1 and s1==s2: return self.THREE_IN_ROW

        # 4 spins
        if s3==0: return self.LOSE
        if s0+s1+s2+s3 == 15: return self.FOUR_DIFFERENT
        if s1==s2 and s2==s3: return self.THREE_IN_ROW

        # 5 spins
        if s4==0: return self.LOSE
        if s1+s2+s3+s4 == 15: return self.FOUR_DIFFERENT
        if s2==s3 and s3==s4: return self.THREE_IN_ROW
        c = {}
        for i in self.spots[0:5]:
            if c.has_key(i):
                c[i] += 1
                if c[i] == 3: return self.THREE_OF_FIVE
            else:
                c[i] = 1

        # 6 spins
        if s5==0: return self.LOSE
        if s2+s3+s4+s5 == 15: return self.FOUR_DIFFERENT
        else: return self.SIX_SPINS

k = KingCoin()

spins = 100000
sum = 0.0
for i in range(spins):
    sum += k.play_once()

print "average return over %d spins is %f" % (spins, sum / spins)
9925  Economy / Gambling / Re: A delightfully simple spin-the-wheel game (that's provably fair) on: November 14, 2012, 09:01:03 PM
Does "red, red, yellow, red, red" count as a "3 out of 5" win?  It's a 4 out of 5, so I can imagine you might not count it as a win, though that would seem a little harsh.
9926  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 14, 2012, 08:16:33 PM
Dooglus great comments, thank you!  But why did it take 8 hrs to download the light blockchain?!? You on a modem? Smiley  On my computer it takes about 15 minutes total upon first launch, and on the tablet it takes about 30 mins total.

It seems you did find a bug in the balance not updating to "Available" even though it was. Relaunching the program fixes it, but we'll address that bug asap.

The largest usability issue is that once you bet, the change from that bet also becomes pending until one block has passed. We're working on a solution to that as well.

And Dooglus for goodness' sake upgrade from your 28.8 modem Smiley

I live in the middle of nowhere, with no cell phone coverage, no electricity, no cable or DSL internet.  I can get satellite internet though, and get something like 5 megabits/s.  I am often able to download torrents at 500kB/s or faster.

I've no idea why the download was so slow.

After withdrawing as much as I could last night, my balance is now 0.0005 BTC.  I don't know if the app is deliberately preventing me from withdrawing the last 0.0005 BTC so that the available (= balance - 0.0005) is never negative, but it kind of sucks.  Those 0.0005 BTC amounts are kind of 'lost' in the roller's wallet, unspendable by anyone.
9927  Economy / Service Discussion / Re: Satoshi Dice -- Statistical Analysis on: November 14, 2012, 08:00:14 PM
Quote
Results: 2012-Nov-14 11:56am (up to block 207947)

   Address  Target   Should Win |    #Bets |       Win        |   Lose  | Refunds |   BTC In   |  BTC Out   |  Refund  |   Profit  |   RTP 
---------------------------------------------------------------------------------------------------------------------------------------------
 1dice1e6p       1      0.00002 |    39552 |      0 (0.00000) |   39084 |     468 |     250.48 |       0.01 |    52.57 |    250.46 |   0.008
 1dice1Qf4       2      0.00003 |     2292 |      0 (0.00000) |    2196 |      96 |      34.23 |       0.00 |    10.46 |     34.23 |   0.005
 1dice2pxm       4      0.00006 |     3524 |      0 (0.00000) |    3482 |      42 |      47.69 |       0.04 |     5.65 |     47.65 |   0.088
 1dice2vQo       8      0.00012 |     4816 |      2 (0.00042) |    4770 |      44 |      77.90 |      16.07 |     5.65 |     61.82 |  20.639
 1dice2WmR      16      0.00024 |     6085 |      1 (0.00017) |    6045 |      39 |     170.65 |       4.30 |     8.40 |    166.35 |   2.523
 1dice2xkj      32      0.00049 |     7762 |      3 (0.00039) |    7747 |      12 |     478.44 |     303.40 |     1.29 |    175.03 |  63.415
 1dice2zdo      64      0.00098 |     9585 |      8 (0.00084) |    9552 |      25 |     755.72 |     124.65 |    55.64 |    631.06 |  16.495
 1dice37Ee     128      0.00195 |    11936 |     22 (0.00185) |   11857 |      57 |    1682.70 |    1292.33 |    48.25 |    390.37 |  76.801
 1dice3jkp     256      0.00391 |    13088 |     59 (0.00451) |   13012 |      17 |    1875.01 |    2637.47 |    13.12 |   -762.46 | 140.664
 1dice4J1m     512      0.00781 |    20571 |    155 (0.00754) |   20403 |      13 |    3590.31 |    3442.69 |     9.35 |    147.62 |  95.888
 1dice5wwE    1000      0.01526 |    46894 |    720 (0.01536) |   46161 |      13 |   10801.46 |   10506.82 |     1.80 |    294.64 |  97.272
 1dice61SN    1500      0.02289 |    17823 |    428 (0.02403) |   17386 |       9 |    5788.71 |    6018.48 |    15.00 |   -229.77 | 103.969
 1dice6DPt    2000      0.03052 |    25752 |    819 (0.03181) |   24927 |       6 |    6556.86 |    6156.77 |     9.24 |    400.08 |  93.898
 1dice6gJg    3000      0.04578 |    19062 |    880 (0.04618) |   18174 |       8 |    7988.36 |    9223.08 |    24.99 |  -1234.71 | 115.456
 1dice6GV5    4000      0.06104 |    23507 |   1446 (0.06153) |   22056 |       5 |    5345.72 |    4876.08 |    31.20 |    469.64 |  91.215
 1dice6wBx    6000      0.09155 |    26084 |   2467 (0.09466) |   23596 |      21 |   11652.04 |   12383.92 |     7.01 |   -731.88 | 106.281
 1dice6YgE    8000      0.12207 |   104491 |  12844 (0.12295) |   91623 |      24 |   16151.99 |   14168.48 |     0.00 |   1983.51 |  87.720
 1dice7EYz   12000      0.18311 |    25466 |   4742 (0.18635) |   20705 |      19 |   10194.33 |   10363.10 |    14.50 |   -168.76 | 101.655
 1dice7fUk   16000      0.24414 |   120023 |  29223 (0.24354) |   90768 |      32 |   74327.80 |   72975.13 |   566.79 |   1352.66 |  98.180
 1dice7W2A   24000      0.36621 |    87682 |  32264 (0.36819) |   55365 |      53 |   74581.31 |   75582.04 |   212.64 |  -1000.72 | 101.342
 1dice8EMZ   32000      0.48828 |   664234 | 324312 (0.48862) |  339421 |     501 |  388973.35 |  384517.87 |  2923.44 |   4455.48 |  98.855
 1dice97EC   32768      0.50000 |   258181 | 128688 (0.49887) |  129272 |     221 |  249519.63 |  244876.56 |  1709.79 |   4643.07 |  98.139
 1dice9wcM   48000      0.73242 |   184032 | 135356 (0.73584) |   48591 |      85 |  182922.98 |  179703.08 |   704.58 |   3219.90 |  98.240
 1dicec9k7   52000      0.79346 |    19881 |  15775 (0.79403) |    4092 |      14 |   30596.70 |   30525.73 |  1187.00 |     70.96 |  99.768
 1dicegEAr   56000      0.85449 |    18393 |  15739 (0.85696) |    2627 |      27 |   31356.52 |   31009.24 |   400.00 |    347.28 |  98.892
 1diceDCd2   60000      0.91553 |    10303 |   9436 (0.91665) |     858 |       9 |   24784.74 |   24749.21 |     0.00 |     35.53 |  99.857
 1dice9wVt   64000      0.97656 |     8710 |   8385 (0.98013) |     170 |     155 |   19122.69 |   18797.64 |   239.21 |    325.05 |  98.300
---------------------------------------------------------------------------------------------------------------------------------------------
           small (bets < 4 BTC) |  1722129 | 694959           | 1025376 |    1794 |  427523.99 |  419005.75 |   158.19 |   8518.23 |  98.008
            big (bets >= 4 BTC) |    57600 |  28815           |   28564 |     221 |  732104.48 |  725248.57 |  8099.50 |   6855.90 |  99.064
---------------------------------------------------------------------------------------------------------------------------------------------
                                |  1779729 | 723774           | 1053940 |    2015 | 1159628.47 | 1144254.32 |  8257.69 |  15374.14 |  98.674
---------------------------------------------------------------------------------------------------------------------------------------------

SD Profit before fees:      15374.14629048 BTC (1.326%)
Cumulative Fees Paid:         973.66817500 BTC
SD Profit after fees:       14400.47811548 BTC (1.242%)
----
Since Satoshi Dice started, there have been:
Blockchain Tx:  5983483  :  SatoshiDice Tx:  3301759  (55.2%)
Blockchain MB:   2528.6  :  SatoshiDice MB:   1348.7  (53.3%)

9928  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 14, 2012, 04:53:15 AM
I think I found a bug.

My balance is 8.1270 BTC.

My available balance is 8.1265 BTC.

But the withdraw dialog won't let me withdraw more than 8.1260 BTC.

ie. it's taking off the mandatory 0.005 BTC transaction fee twice.

Also, I'd like to be able to copy/paste the available amount.  It's annoying to have to copy it by hand.

A "withdraw all" button would also work.
9929  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 14, 2012, 04:44:07 AM
I made a small bet, a very small percentage of the amount I deposited.  It won, but now my whole balance is 'pending', presumably because the change from my bet now has no confirmations.  So I'm going to have to wait for another block to be found before I can play again.

My bet now has 6 confirmations.  So my change must also.  Yet my whole balance is still shown as "pending".  What's going on?  I did lose power to the router for a few minutes.  Does the roller client not handle Internet outages very well?



I'll try restarting the roller client.

Edit: that fixed it.  When I first restarted it, I saw:



but once it connected, it very quickly fetched blocks (42%, 84% flashed by) and then my balance was no longer pending:

9930  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 14, 2012, 03:59:43 AM
So it finally finished downloading the blocks after about 8 hours.  Then I decided to deposit some coins to the address it gave me, and of course it's been almost an hour since the last block was found, so I'm having to wait now for a confirmation.

Eventually I'll get to try the new interface out I'm sure.  Smiley

Edit: I got to play.  I made a small bet, a very small percentage of the amount I deposited.  It won, but now my whole balance is 'pending', presumably because the change from my bet now has no confirmations.  So I'm going to have to wait for another block to be found before I can play again.  That's quite a limitation, and one that's definitely worth addressing.  It's so much more convenient to play from the satoshi client where I can bet with unconfirmed coins.
9931  Economy / Service Discussion / Re: Satoshi Dice -- Statistical Analysis on: November 14, 2012, 02:35:25 AM
Im not great with odds but can anyone tell me the odds of getting 3 seperate transaction rolls over 64 000 in a row? I know that its about 2.5% to get 1 roll over 64000.

Yes, I can.  You probably mean 64000 or over, since 64000 is a losing roll when you're playing "lessthan 64000" too.

The probability of losing a single "lessthan 64000" is:

Code:
>>> 1 - 64000/65536.0
0.0234375

Or about a 1-in-42.666 shot.

To find the probability of it happening 3 times in a row, you just cube that number:

Code:
>>> (1 - 64000/65536.0)**3
1.2874603271484375e-05

That's scientific notation for 0.00001287, and represents a 1-in-77672 shot.

In other words, it's pretty unlikely and probably has never happened since "lessthan 64000" has been played less than 9000 times.

It may have happened of course - it wouldn't be incredibly unlikely.  Not like losing 60 "lessthan 32000" bets in a row, which is so unlikely it will almost certainly never happen.

Edit: note that you'll need to multiply probabilities by 100 to get percentages.  And note also that 42.666 cubed is 77672.

Edit 2: I notice you didn't specify that you were playing "lessthan 64000" at the time.  It's much more likely that someone has got three rolls over 64000 in a row when they were playing other bets.  It's just that "lessthan 64000" is a relatively unpopular bet, and wasn't even available for probably half of SatoshiDice's lifetime so far.
9932  Economy / Gambling / Re: A delightfully simple spin-the-wheel game (that's provably fair) on: November 14, 2012, 02:23:03 AM
I would include this kind of detail on the site somewhere, along with what the total 'size' of the wheel is, etc.  Then people can calculate (via simulation, if not analytically) the house edge.

I see you're shuffling 450 0's and 3 1's.  I saw one wheel where there were no 0's after the 3rd 1.  I guess that means the corresponding colour was at its minimum of 10%.

It looks to me like each 0 represents 1/1000th of the wheel, since 10+10+10+10+15 = 55% of the wheel is already accounted for by the fixed size black and the 4 10% minimums leaving 45% represented by the 450 0's you shuffle.  I'd like to see this explicitly stated in your 'how it works' section.
9933  Economy / Gambling / Re: A delightfully simple spin-the-wheel game (that's provably fair) on: November 14, 2012, 02:10:08 AM
Each game, the minimum size of each slice is 10% of the total wheel.

I would include this kind of detail on the site somewhere, along with what the total 'size' of the wheel is, etc.  Then people can calculate (via simulation, if not analytically) the house edge.

Edit: I notice the 'division of the wheel' isn't shown in the 'provably fair' section until after my first spin.  It could be shown as soon as the division has been revealed graphically, since by then I've already committed to playing and spent my BTC.
9934  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 13, 2012, 10:57:56 PM
The 'fetching blocks' got up to 18% after 2 or 3 hours when the power went out so I closed the SD app.  I got back online, restarted the SD app, and was surprised to see it starting from 1% again fetching blocks.

Yes, this is normal, and it is not re-fetching any old blocks; it is now at 1, 2, 3% of the remaining blocks. I agree this is confusing/misleading. I should improve the logic to show the overall % (of all blocks). Thanks.

The current logic is OK so long as it's clear that that's what it's doing.  If you showed "1% (5000 of 200000 blocks) then it would be clearer I think.  What is it fetching exactly?  All the block headers, but none of the block content?  Or just recent blocks?
9935  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 13, 2012, 08:58:05 PM
The 'fetching blocks' got up to 18% after 2 or 3 hours when the power went out so I closed the SD app.  I got back online, restarted the SD app, and was surprised to see it starting from 1% again fetching blocks.

The SatoshiRoller.blocks file was up to about 5MB, and is continuing to grow from that size, but the progress indicator started from 1% again.

Is that normal?  I'm never going to be able to stay online to download all the blocks in one go.

I also don't see any way to resize the app.  The text is kind of small, but I have lots of spare screen realestate.  I'd like to 'fullscreen' the window.  On a netbook I suspect the window is too big, so it would be useful to be able to shrink it a bit too.
9936  Economy / Service Discussion / Re: Satoshi Dice -- Statistical Analysis on: November 13, 2012, 06:30:52 PM
Address 17q45rQpdsSvbb5Ysazxo4LTFAL4F3kz95 has been making some big bets since the last report, and had a couple of nice wins too:

Quote
Mon Nov 12 21:52:37 2012 <24000 89deef5c1b8e8a5d BET  16.00000000 WIN   26.72159066
Mon Nov 12 22:30:55 2012 <32000 1ae7afc401c90352 BET  10.00000000 LOSE   9.95050000
Mon Nov 12 22:50:50 2012 <32000 f79d7e6453a7f696 BET  20.00000000 WIN   20.07646000
Tue Nov 13 00:48:55 2012 <16000 8df554debe83ffcb BET  12.80000000 LOSE  12.73650000
Tue Nov 13 01:02:30 2012 <16000 8cb0b0560b9738a0 BET  18.00000000 LOSE  17.91050000
Tue Nov 13 01:02:30 2012 <16000 e4af6c4e128fca91 BET  29.50000000 WIN   88.57903200
Tue Nov 13 01:02:30 2012 <16000 b8d63b51b1c80ca4 BET  25.60000000 LOSE  25.47250000
Tue Nov 13 01:28:17 2012 <16000 f3d7e36ac952a339 BET  36.00000000 LOSE  35.82050000
Tue Nov 13 01:40:02 2012 <16000 5d15b0a33a4210a8 BET  88.00000000 LOSE  87.56050000
Tue Nov 13 01:40:02 2012 <16000 71516f9be04bf8e0 BET  44.00000000 LOSE  43.78050000
Tue Nov 13 02:30:32 2012 <16000 ca269dcb06819f77 BET 168.00000000 LOSE 167.16050000
Tue Nov 13 02:30:32 2012 <6000  7c4146f32325ad0c BET  55.00000000 WIN  531.60324666
Tue Nov 13 02:59:21 2012 <16000 bbae8a474008bb9c BET 200.00000000 LOSE 199.00050000
Tue Nov 13 03:26:54 2012 <16000 deb23ecb648b4c39 BET 210.00000000 WIN  630.56566000

Quote
Results: 2012-Nov-13 10:19am (up to block 207788)

   Address  Target   Should Win |    #Bets |       Win        |   Lose  | Refunds |   BTC In   |  BTC Out   |  Refund  |   Profit  |   RTP 
---------------------------------------------------------------------------------------------------------------------------------------------
 1dice1e6p       1      0.00002 |    39017 |      0 (0.00000) |   38549 |     468 |     248.82 |       0.01 |    52.57 |    248.80 |   0.008
 1dice1Qf4       2      0.00003 |     2281 |      0 (0.00000) |    2185 |      96 |      34.05 |       0.00 |    10.46 |     34.05 |   0.005
 1dice2pxm       4      0.00006 |     3507 |      0 (0.00000) |    3465 |      42 |      46.47 |       0.03 |     5.65 |     46.43 |   0.085
 1dice2vQo       8      0.00012 |     4807 |      2 (0.00042) |    4761 |      44 |      77.86 |      16.07 |     5.65 |     61.78 |  20.651
 1dice2WmR      16      0.00024 |     6055 |      1 (0.00017) |    6015 |      39 |     170.52 |       4.30 |     8.40 |    166.21 |   2.525
 1dice2xkj      32      0.00049 |     7661 |      3 (0.00039) |    7646 |      12 |     477.47 |     303.40 |     1.29 |    174.06 |  63.544
 1dice2zdo      64      0.00098 |     9498 |      8 (0.00084) |    9465 |      25 |     752.86 |     124.64 |    55.64 |    628.21 |  16.557
 1dice37Ee     128      0.00195 |    11725 |     21 (0.00180) |   11647 |      57 |    1678.55 |    1282.34 |    48.25 |    396.20 |  76.396
 1dice3jkp     256      0.00391 |    13075 |     59 (0.00452) |   12999 |      17 |    1874.97 |    2637.47 |    13.12 |   -762.50 | 140.668
 1dice4J1m     512      0.00781 |    20546 |    153 (0.00745) |   20380 |      13 |    3589.68 |    3442.44 |     9.35 |    147.24 |  95.898
 1dice5wwE    1000      0.01526 |    46554 |    718 (0.01543) |   45823 |      13 |   10795.50 |   10504.26 |     1.80 |    291.24 |  97.302
 1dice61SN    1500      0.02289 |    17812 |    428 (0.02404) |   17375 |       9 |    5788.62 |    6018.48 |    15.00 |   -229.86 | 103.971
 1dice6DPt    2000      0.03052 |    25725 |    818 (0.03181) |   24901 |       6 |    6555.87 |    6155.17 |     9.24 |    400.70 |  93.888
 1dice6gJg    3000      0.04578 |    19041 |    878 (0.04613) |   18155 |       8 |    7988.07 |    9222.00 |    24.99 |  -1233.92 | 115.447
 1dice6GV5    4000      0.06104 |    23143 |   1433 (0.06193) |   21706 |       4 |    5341.94 |    4872.96 |    31.20 |    468.98 |  91.221
 1dice6wBx    6000      0.09155 |    25956 |   2460 (0.09485) |   23476 |      20 |   11645.36 |   12381.75 |     7.01 |   -736.39 | 106.324
 1dice6YgE    8000      0.12207 |   104183 |  12814 (0.12302) |   91345 |      24 |   16137.72 |   14153.34 |     0.00 |   1984.37 |  87.704
 1dice7EYz   12000      0.18311 |    25289 |   4709 (0.18635) |   20561 |      19 |   10003.49 |   10274.86 |    14.50 |   -271.37 | 102.713
 1dice7fUk   16000      0.24414 |   119511 |  29110 (0.24364) |   90370 |      31 |   73062.00 |   71752.73 |   566.79 |   1309.26 |  98.208
 1dice7W2A   24000      0.36621 |    87295 |  32119 (0.36816) |   55123 |      53 |   74113.67 |   75094.19 |   212.64 |   -980.52 | 101.323
 1dice8EMZ   32000      0.48828 |   660741 | 322660 (0.48869) |  337591 |     490 |  388365.74 |  383840.00 |  2923.43 |   4525.73 |  98.835
 1dice97EC   32768      0.50000 |   256319 | 127802 (0.49903) |  128300 |     217 |  248446.95 |  243798.86 |  1709.79 |   4648.08 |  98.129
 1dice9wcM   48000      0.73242 |   183105 | 134693 (0.73595) |   48327 |      85 |  182532.23 |  179320.31 |   704.58 |   3211.92 |  98.240
 1dicec9k7   52000      0.79346 |    19781 |  15695 (0.79400) |    4072 |      14 |   30546.64 |   30478.41 |  1187.00 |     68.22 |  99.777
 1dicegEAr   56000      0.85449 |    18134 |  15522 (0.85724) |    2585 |      27 |   31215.69 |   30882.14 |   400.00 |    333.54 |  98.931
 1diceDCd2   60000      0.91553 |    10184 |   9332 (0.91715) |     843 |       9 |   24670.93 |   24653.64 |     0.00 |     17.29 |  99.930
 1dice9wVt   64000      0.97656 |     8666 |   8343 (0.98003) |     170 |     153 |   19100.91 |   18775.78 |   239.21 |    325.13 |  98.298
---------------------------------------------------------------------------------------------------------------------------------------------
           small (bets < 4 BTC) |  1712144 | 691022           | 1019348 |    1774 |  425721.34 |  417234.22 |   158.18 |   8487.12 |  98.006
            big (bets >= 4 BTC) |    57467 |  28759           |   28487 |     221 |  729541.34 |  722755.51 |  8099.50 |   6785.83 |  99.070
---------------------------------------------------------------------------------------------------------------------------------------------
                                |  1769611 | 719781           | 1047835 |    1995 | 1155262.69 | 1139989.74 |  8257.68 |  15272.95 |  98.678
---------------------------------------------------------------------------------------------------------------------------------------------

SD Profit before fees:      15272.95534380 BTC (1.322%)
Cumulative Fees Paid:         963.52837500 BTC
SD Profit after fees:       14309.42696880 BTC (1.239%)
----
Since Satoshi Dice started, there have been:
Blockchain Tx:  5951508  :  SatoshiDice Tx:  3283193  (55.2%)
Blockchain MB:   2515.1  :  SatoshiDice MB:   1341.2  (53.3%)

9937  Economy / Gambling / Re: PM Poker – True Vegas Style Poker with Bitcoin (New) on: November 13, 2012, 06:18:59 PM
It works for me in WINE, mostly.  I found that deleting my ~/.wine/ folder and reinstalling helped.  Note that such an action will uninstall anything you've installed using WINE, along with all the settings.

I played a couple of days ago and it worked except that both times I got into a big hand an error message popped up and then the client completely crashed.  In both instances I restarted it instantly, but by the time I got back in, my hand had been folded.

There needs to be some kind of automatic disconnect time-bank that will give me time to restart the client when it crashes without folding my hand.  I understand that we don't want to be giving "disconnected" players their full time-to-act every turn, but for players who are really playing and occasionally get disconnected some kind of allowance should be made.

I found a new (to me) bug yesterday.  I was knocked out of a tournament, and clicked 'leave' to leave the table after I had lost.  A fraction of a second after the window closed I saw a pop-up error message saying that the poker table couldn't be found.  I assume the server was trying to update the table I had just left, but the client had already closed the table.  I dismissed the error message, and the client shut down, rather than taking me to the lobby.

There are still far too many little bugs and annoyances at PMPoker for me to consider playing regularly.  If the bugs people reported were fixed, or even acknowledged it would be different, but for now I'm going to have to leave the site alone.

Mr. PMPoker, please post here when you've fixed enough of the little bugs that you think it's worth people trying the site again.

Thanks.  Smiley
9938  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 13, 2012, 06:02:44 PM
Awesome. Testing now, how come you need to wait for a deposit to confirm before it can be bet?

Just guessing, but:

Unintentional double-spends cause problems for SDICE's wallet handling.  They pay out winners with losers' bets.  If the losing bets never confirm then the payouts that use those bets never confirm either.  Incoming bets are much more likely to confirm if the inputs of those bets are already confirmed.
9939  Economy / Gambling / Re: [ANN] SatoshiDICE Android and Desktop Apps Released on: November 13, 2012, 06:00:41 PM
A thin version of the blockchain is downloaded on first launch (about 20 MB).

That's a very slick looking interface.  I like it.

Comments:

Some kind of progress indicator would be useful.

I just see a flashing "fetching blocks" message, but have no way of knowing whether it's going to take another 10 seconds or 10 hours.  I don't know whether to give it a few more minutes or give up on it.

Oh, never mind.  It eventually changed to "fetching blocks... 1%".

So the initial message should say "fetching blocks... 0%" to I can see that it has a long long way to go.

Incidentally, I (and I would guess a lot of other people) have the full blockchain already in ~/.bitcoin/blk*.  My Internet connection is slow and expensive.  I would much prefer that your 'thin client' check to see if it can grab blocks from my local copy before it re-fetches them over the network.
9940  Economy / Securities / Re: S.DICE - SatoshiDICE 100% Dividend-Paying Asset on MPEx on: November 13, 2012, 05:50:45 PM
Windows, and Max apps released!!!

Mac?
Pages: « 1 ... 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 [497] 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 ... 573 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!