Search content
Sort by

Showing 17 of 17 results by Bitcoin-Dice
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| Source-Code on Sale
by
Bitcoin-Dice
on 22/06/2012, 11:51:05 UTC
Can you give a rough description of what is in the source code?

Is there stuff to process transactions, send payments, communicate with bitcoin network, etc?

Yes its all in the Source depending on the Bitcoind JSON-RPC Api
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| Source-Code on Sale
by
Bitcoin-Dice
on 22/06/2012, 10:17:41 UTC
ATM the Source is going to Fredyy for 5BTC
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| Source-Code on Sale
by
Bitcoin-Dice
on 20/06/2012, 14:10:26 UTC
bump
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| Source-Code on Sale
by
Bitcoin-Dice
on 19/06/2012, 18:45:58 UTC
push
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| win up to 125x you Bet in seconds
by
Bitcoin-Dice
on 19/06/2012, 14:13:07 UTC
Hi,

i would like to sell the Sourcecode. It's created with PHP5 and MySQL and is totally OOP.

Everything you need to run it, is a Webserver with PHP5, MySQL and bitcoind running.

Starting Bet is 5 BTC.
Buyout Price is 25 BTC

This auctions ends on 26. July 2012 at 9 pm UTC

Buyout is also an exclusive license for you.
Post
Topic
Board Beginners & Help
Re: Hello , check my new website
by
Bitcoin-Dice
on 07/06/2012, 15:39:13 UTC
Changed the Design again .

 Wink Shocked

check i out .btcwallet.org

the design looks better but still all contents are very bit.

gigantic icons, huge font sizes  etc.
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| win up to 125x you Bet in seconds
by
Bitcoin-Dice
on 07/06/2012, 15:06:23 UTC
To verify this on a game like this is hard but here is the piece of code we use to get the numbers.
And how can we be sure this is indeed the actual code that your website is using?

Don't get me wrong - I'm not implying you are cheating, I'm just saying we can't tell for sure that you aren't.


I see the problem, i'm thinking about how to solve this, satoshidice uses hashes, which are recalculated afterwards, but in the case of Bitcoin-Dice, it's something else, because I'm not able to recalculate anything afterwards.

One more thing that just pops to mind. My uncle works at random.org, I will ask him to log the numbers that are requested by your site, and share the profits with him.

Expect to see some bigtime winnings soon, I hope you have enough BTC in stock! Smiley

This would be pretty hard for you, because i get the random numbers in bulks of 100 and take them in a random order, good luck Smiley

looks good, addressing the concerns with random may help attract more players (in my experience anyway).
If you need some examples have a look @ probiwon and satoshidice.

See my my first text in this post for satoshidice. probiwon is really round based and a little different to the Bitcoin-Dice system, there is no page where i could show a hash of the next games result just for this one user. I properbly could show the hashes of the next 5 [10,20,50] Games but its hard to say, which of these will be used for a specific game, because the games are processed on the order, the transactions are on my server, so there could also be a fast transaction to get the hash.


If you've got any suggestion how i could prove the real randomness of this game, please tell me. I'll implement it as fast as possible.

Greetings,

The Bitcoin-Dice Team
Post
Topic
Board Beginners & Help
Re: [ANNOUNCEMENT]: The all new Bitcoin-Dice ||| win up to 125x you Bet in seconds
by
Bitcoin-Dice
on 07/06/2012, 11:56:50 UTC
To verify this on a game like this is hard but here is the piece of code we use to get the numbers.

Code:
    private function getRandomNumber() {

        $guid = uniqid();

        $updatenumbersql = "UPDATE `{$this->_mysqlprefix}numbers` SET `used` =  '{$guid}' WHERE `used` = '0'  LIMIT 1;";
        $this->_mysqlconn->query($updatenumbersql);

        if($this->_mysqlconn->affected_rows > 0){


            $getnumbersql = "SELECT * FROM `{$this->_mysqlprefix}numbers` WHERE `used` = '{$guid}' LIMIT 1;";
            $getnumberquery = $this->_mysqlconn->query($getnumbersql);
            $number = $getnumberquery->fetch_array();

            return $number['number'];

        }else{

            $numbers = file("http://www.random.org/integers/?num=100&min={$this->_minnumber}&max={$this->_maxnumber}&col=1&base=10&format=plain&rnd=new");

            if(is_array($numbers)){

                $numberstring = "";

                foreach($numbers as $number){
                    $numberstring .= "('{$number}'),";
                }

                $numberstring = rtrim($numberstring, ',');

                $insertnumberssql = "INSERT INTO `{$this->_mysqlprefix}numbers` (`number`) VALUES {$numberstring};";
                $this->_mysqlconn->query($insertnumberssql);

            }

            return $this->getRandomNumber();

        }

    }

What do i mean by 'real random number'?

Most random numbers created by computers are pseudorandom. The random numbers provided by random.org are base on atmospheric noise and known to be the "truest" random numbers available on the internet.
Post
Topic
Board Beginners & Help
Re: Buy Bitcoins With PayPal
by
Bitcoin-Dice
on 07/06/2012, 09:33:30 UTC
bitcoins via paypal is never a good idea.
Post
Topic
Board Beginners & Help
Re: Why doesn't it count my time logged in correctly?
by
Bitcoin-Dice
on 07/06/2012, 09:20:30 UTC
Just continue being active in this forum.

Counting the time is often not very accurate.
Post
Topic
Board Beginners & Help
Re: Two Newbies walk into the Do Not Use PayPal Saloon...
by
Bitcoin-Dice
on 07/06/2012, 09:19:25 UTC
Nice one Smiley
Post
Topic
Board Beginners & Help
Re: The all new Bitcoin-Dice ||| 1 BTC per reported BUG
by
Bitcoin-Dice
on 07/06/2012, 08:31:36 UTC
The Win calculator should calculate to at least 3 decimal places regardless of the bet as this would allow for the calculator to account for the bet fee as well.
It shows up to 8 decimal places
Edit: The calculator also auto-calulates when you change the bet so there is no need for the calculate button
you are right, the button was removed
Edit 2: http://gyazo.com/fa8a78dcb98a48b4396673aa6ccec124 this calculator link sends me to page bottom, not to the calculator, thus half is cut off.
it were send you to the button, right now it sends you to the heading, show look correct now
Edit 3: The minimum payin amounts are .01 BTC however it is obvious bets are not limited to being that low as You can see from bets that many are lower and your site also even suggests using a lower amount here - http://gyazo.com/7f6f9a0a0cbd0b8facea60d0c4bc1a26 leading to contradictory information.
This were test bets, that's why i raised the min payout.
Edit 4: http://gyazo.com/45cae46bfbb6f1ef972011d37b88b7b2 i dont know if multiple wins/losses are supposed to be able to be selected at the same time, but it seems as if when a new one is selected that the old one should be deselected.
this were just a little, visual problem, but you are right just on highlighted at a time looks better
Edit 5: The "Last Winner" tab at the bottom does not direct you to the last winner's bet, but instead to a table showing some assortment of bets i cant figure out the pattern of - http://gyazo.com/2ed6a55832c9fa9db364d6cf90e5a07e
It's "Last Winners", fixed the typo, sorry
Edit 6: I would change this teminology of "between" to "from" as between is leading toward the assumption that the numbers 1 and 16384 are excluded from the random.org calculation - http://gyazo.com/05861630adc477fe6ecf88f7d9aacc46
thank you for this suggestion
Edit 7: The text in this part of the site is repetitive and the top phrase should be changed to F.A.Q. as there is more than just 'how to play' below it - http://gyazo.com/7f55b3f7b6bdf02058e24114b7d2469e
thank you for this suggestion
Edit 8: i would find a way to fix the fact that this customer WON and yet got payed less than he put in - http://gyazo.com/df9b51cad54bf00327df4b8ab98aae0b you could do this by implementing a percentage instead of a flat fee, or fixing the minimum bet issue. This currently only leaves you with a dissatisfied customer even though you get your fee.
this were a problem with the transaction fee, min payins a raised to avoid this.
Edit 9: http://gyazo.com/d38f09816f9a0f20c71b0d42ef1d157f Spelling errors, correct to 'adjusted' and 'automatically'.
thank you

-----------------------------
-----------------------------
-----------------------------

no more comic sans Cheesy Google Webfonts is working again.
2.
Quote
Send you Bet to one of the adresses below.
Should say "Send your bet to one of the addresses below."
thank you
3.
Quote
The maximum payin is automaticly ajusted every 5 minutes.
Should say "The maximum payin is automatically adjusted every 5 minutes."
mentioned above, but thank you anyway.
4. You should get your own favicon.
i'm going to create on late this day
5.
Quote
Last Winner
Should say "Last Winners"
Yes, I know that these are suggestions not bugs.
thank you.

-----------------------------
-----------------------------
-----------------------------

A big thank you goes to you two guys for your suggestions.

Greetings,

The Bitcoin-Dice Team
Post
Topic
Board Beginners & Help
Re: Hello , check my new website
by
Bitcoin-Dice
on 07/06/2012, 08:18:55 UTC
You should make everything a bit smaller. It feels similar to someone screaming a web site at you. Or maybe I'm just getting tired Tongue

I'm going to second this. It feels too big, especially on my 10.5 inch netbook screen.

so true
Post
Topic
Board Beginners & Help
Re: OMG 1 terahash = 1 million USD ahahahaha
by
Bitcoin-Dice
on 07/06/2012, 08:16:38 UTC
WHAT IS SO SCARY IS NEXT YEAR when 1 terahash will only produce 500,000 USD because of the block split to 25 coins.

i think the difficulty will go down, because a lot of people will stop mining because of the cut. So its properly still more than 500,000 USD Smiley
Post
Topic
Board Beginners & Help
Re: alternative to SatoshiDice
by
Bitcoin-Dice
on 06/06/2012, 22:10:52 UTC
Right now there is one in its test phase: http://www.bitcoin-dice.com

Give it a try Smiley
Post
Topic
Board Beginners & Help
Re: Is mining still worth it?
by
Bitcoin-Dice
on 06/06/2012, 21:29:07 UTC
If you already have some useful mining hardware (GPU etc) its definitely worth it.

If you need to buy some hardware first you should take a closer look, but your electricity is quite cheap, so i think yes it could become profitable.
Post
Topic
Board Beginners & Help
Topic OP
[ANNOUNCEMENT]: The all new Bitcoin-Dice ||| Source-Code on Sale
by
Bitcoin-Dice
on 06/06/2012, 21:23:37 UTC
Hi Folks,

The all new http://www.bitcoin-dice.com started.

You bet if a random number between 1 and 16384 is be below a certain number and can will up to 124x the value your bet.

We use real random number provided by random.org to make the game a fair for you as possible.

Please leave your feedback and tell us, what you think about or service.

Greetings,
The Bitcoin Dice Team