downandout 11 years ago

A far easier way to destroy your opponents in online poker is collusion, and it's happening all day, every day.

eximius 11 years ago

I'm sorry, this seems incredibly naive, but couldn't you just have

    cards = range(52)
    shuffled = []
    while len(cards)>0:
        shuffled.append(random.choice(cards))
        cards.remove(shuffled[-1])
    return shuffled

which should be, given a good randomness, literally equivalent to drawing randomly from a pool of 52 cards to form a deck. Is this somehow less efficient than their algorithm?

  • rav 11 years ago

    That is essentially the same as the algorithm in the article, which was Figure 3:

        for (i is 1 to 52)
            Swap i with random position between i and 52
    

    After i iterations, the first i entries are your "shuffled", and the last 52 - i entries are your "cards". "random.choice(cards)" corresponds to picking a "random position between i and 52".

    • eximius 11 years ago

      I suppose. I guess I just prefer the more direct, naive algorithm when the performance gain would seem to be so small. (not that I've profiled it or anything :/)

      • rav 11 years ago

        From a CS theory perspective, I would say it's two implementations of the same algorithm, or two ways of phrasing the same algorithm. The most natural formulation in your eyes is probably not the same as the most natural formulation in the eyes of the article author.

    • lmm 11 years ago

      But they didn't do that - they picked a random position between 1 (not i) and 52 each time, which gives a biased shuffle. Even if their randomness had been perfect, this would have been problematic.

  • solutionyogi 11 years ago

    I think the problem is the randomness.

    When you use your language's random function, you are getting a pseudorandom generator. As noted in the article, they were able to figure out the seed for the random function. Once you know the seed, the game is over. The adversary can now figure out the exact shuffled deck.

    Also see: http://ericlippert.com/2013/05/06/producing-permutations-par...

    • eximius 11 years ago

      My point was the algorithm, not the implementation, hence my disclaimer on 'good randomness'.

      • astrodust 11 years ago

        The algorithm is not the problem. The "good randomness" part is the entire problem.

        Easy way to shuffle a deck is just to give each card a random 32-bit index and sort. You don't need to do anything fancy to get them shuffled up. The problem is, if your random number generator is predictable then the algorithm doesn't matter.

        • AndrewStephens 11 years ago

          Even that is very slightly biased, since you don't specify what happens when 2 cards accidentally end up with the same index. It's better to do the shuffle described in the document.

          It is not just the predictability of the generator that is the issue (all PRNG are predictable really), what really matters is the size of the seed state, which should vastly exceed the number of value shuffles (52! - a huge number).

  • neckro23 11 years ago

    It's not mentioned by name in the article, but the "proper" way to do it is with a Fisher-Yates shuffle: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle

    Depending on the array implentation, adding and removing elements is often an O(n) operation, which isn't terribly efficient. The Fisher-Yates method lets you get the same results without messing with the array length.

  • ecdavis 11 years ago

    Since we're posting Python snippets:

        cards = range(52)
        random.shuffle(cards)
        return cards
erikb 11 years ago

I'd be really interested in articles after 2008. About 2005-2007 is when the internet poker boom was on its height. I'd say in that area there must have been a lot of progress, because there was a lot of money in it, a lot more than now or 1999.

drydot 11 years ago

that's why there exist fairluck.org, to make players be confident with their digital luck ; )

  • Justin_K 11 years ago

    Well your site doesn't explain anything about how it technically works or what steps you go through for certification. Your demo doesn't work and appears to be a phony flash demo anyways. What kind of bond do you carry to support your guarantee? It's pretty easy to conclude that your service is a scam.