Need help with the bot or want someone to talk to?
FORUM.SEUNTJIE.COM

The forum is a good platform for asking or offering help with programmer mode scripts

Site Review

Just-dice - https://just-dice.com

Owned by: Dooglus (Chirs Moore)
www.Bitcointalk.org Thread


Feel

Just-dice has a nice and calming feel to it. The grayish and green color palette of the site is soft on the eye. The page is responsive and easy to use. I get no feeling of confusion or frustration from using the site (except when I lose my coins, GRR)

Usability

For me personally, Just-dice is one of the best designed dice sites out there. I can always find whatever I need immediately, without having to dig around in menus and sub menus for something. The buttons and settings are logically organized in the tabs on the site, and almost no action requires more than 4 clicks to perform.  The roll controls and user statistics are easily accessible, always visible and easy to understand. The controls aren’t cluttered with unnecessary controls. It shows just what you need.

Fair

Just-Dice uses a nonce and hash based provably fair roll generation method that is easy to reproduce and is completely fair towards the user. The full description of the provably fair method can be found on the fair? Tab on just-dice, but in short:You are sent the hash of the server seed and you choose your own client seed. For a new seed combination, your nonce is set to 1. With every bet you make, your nonce is incremented by 1.The roll is determined by taking the hmac-sha512 hash of the server seed and using clientseed:nonce as the key. The resulting hash is split into groups of 5 characters. If the first group integer value is < 1 000 000, it is devided by 10 000 and the result is your lucky number. If the number is >1 000 000, then the next group is used. If no group can be found with a value smaller than 1 000 000, the roll defaults to 0.A roll verifier can be found at http://dicesites.com/justdice/verifierA c# implementation of a roll verifier can be found below:
Code:

public virtual double GetLucky(string server, string client, int nonce) { HMACSHA512 betgenerator = new HMACSHA512(); int charstouse = 5; List<byte> serverb = new List<byte>(); for (int i = 0; i < server.Length; i++) { serverb.Add(Convert.ToByte(server [ i ] )); } betgenerator.Key = serverb.ToArray(); List<byte> buffer = new List<byte>(); string msg = client + ":" + nonce.ToString(); foreach (char c in msg) { buffer.Add(Convert.ToByte(c)); } byte[] hash = betgenerator.ComputeHash(buffer.ToArray()); StringBuilder hex = new StringBuilder(hash.Length * 2); foreach (byte b in hash) hex.AppendFormat("{0:x2}", b); for (int i = 0; i < hex.Length; i+=charstouse) { string s = hex.ToString().Substring(i, charstouse); double lucky = int.Parse(s, System.Globalization.NumberStyles.HexNumber); if (lucky < 1000000) return lucky / 10000; } return 0; }

Speed

Just dice does throttle smaller bets, but when betting larger amounts the bets are extremely fast and the site UI is very responsive and does not lag at all. I have no complaints about the speeds of just-dice. The speed limitations of bets can be found in the FAQ page of just-dice if you would like some more information on it.

API

There is no official API available for just-dice. A third party custom API (JDCAPI) was written by yours truly and can be found at https://github.com/Seuntjie900/jdcapi, along with some example projects on implementing JDCAPI.Just-Dice runs on node.js and implements a socket.io websocket connection for communication. If you do not feel like using JDCAPI to develop your bot/program, then you might be able to utilize this information.

Community

The just-dice community is a close knit and dedicated group op people, with most of the mods being around since the site opened in 2013. There are a few community driven chat bots that run on the site as well, like the inudash bot, for converting between currencies and similar actions and the X Rainman bot to rain on active chatters. There's also a trivia bot that holds trivia competitions in the chat with clam prizes and every now and then, a new bot pops in.The people in the chat are usually friendly and helpful to new users and can be pretty fun to chat with. There are always a few rotten apples in the bunch, but don't let them discourage you from using just-dice, most of the users are pretty decent.

Owners

Dooglus is a long standing trusted member of the bitcoin community, especially in the bitcoin gambling scene. He has contributed to the bitcoin core code and was involved in an in depth analysis of satoshi dice before launching just-dice.He takes a kind but no-nonsense approach to running just-dice. He seems to care highly for his clients and the community of just-dice and constantly improves on the site to keep the community happy. He also listens to community and investor feedback and takes it into consideration as he operates just-dice.Dooglus seems to be the most trustworthy dice site operator in the crypto currency gambling community to date.

Features

Just-dice is pretty feature rich with a bunch of unique features. The list includes:Normal dice game.Hotkeys.Community chat, with private messages and a variety of chat commandsInvestment option with offsite investments possible.Provably fair Roll generation.Sound notifications for large rolls, PMs and messages mentioning your namefilters for rolls shown in the chat and the all bets tabStaking clams for the investorsRandom bet shortcut keysAutomatic escrow for trading ClamsInstant withdrawals and fast depositsAdvertisement options.Proof of solvency

My Comments

Just dice is one of the oldest dice sites around. It was started in June of 2013 and is the first online casino to feature a crowd funded bankroll. Dooglus was the first to implement the invest feature, which allows users to “invest” in the site bankroll and reap the profits of the casino, according to the size of their investments.After a few months of operating, Just-Dice had a bank roll of more than 60 000 Btc. And an amazing max profit of more than 600 Btc. This bankroll dwindled a little over the coming months, until eventually dooglus announced that he’s closing the casino. He was uncomfortable with holding that much of other peoples’ money. Almost all of the 30k invested bitcoin was successfully withdrawn, with the exception of a few users that forgot about their coins or could not access their accounts any more. A few months after closing (about 5), just-dice was re-opened with Clams instead of Bitcoin. Since then, just-dice has been a massive driving force behind the Clam price and support, with more than 720 000 invested Clams (at the time of writing) and a remarkable max profit of 178 885 Clams (at the time of writing), worth 1085Btc! (at the time of writing).If you’ve got a few clams to play with, Just-dice is definitely the place to do it!

Some stats (brought to you by dicesites.com)


Bets:6453183157
Wagered:85,900,317 CLAMWagered (USD):5,342,377,848 USD
Max Profit:423,323.65 CLAMMax Profit (USD):26,327,666 USD

Click here to see more stats and charts on dicesites.com


This Review was done on Wednesday, September 9, 2015


CommentsLogin or Register


This page doesn't have any comments yet ;(. Click on the Make a comment button to the right to make a comment.