therewillbecode

Results 7 issues of therewillbecode

Add the `by` keyword to two proofs where it seemed to be missing. Without these the student might be confused by errors messages in their editor that don't make it...

Right now there are two separate APIs the socket server for game logic and the Servant API for authentication logic. Servant-pipes library should be used so that we can remove...

back end

The type representing the Servant API endpoint for getting the User's Profile is [here](https://github.com/therewillbecode/haskell-poker/blob/a809b55c82ca94c385ca94e203e20c47d829537e/server/src/API.hs#L58) The API Endpoint handler for fetching a user's profile is [here](https://github.com/therewillbecode/haskell-poker/blob/master/server/src/Users.hs#L71) It would be a good...

enhancement
help wanted
good first issue
back end

Limit a player's max bet according to either their chip count or the next largest player in the hand's chipcount. Which ever is smaller. This would prevent the current bug...

bug

The core of the poker game logic lives in [Game.hs](https://github.com/therewillbecode/haskell-poker/blob/master/server/src/Poker/Game/Game.hs). At the moment only single pots are supported. What we need is side pots. For an explanation of how they...

enhancement
help wanted
back end

The amount of tables in the game lobby should automatically adjust when the existing tables begin to fill up. A sensible default would be to say that there should be...

enhancement
help wanted
good first issue
back end

**What is the purpose of this pull request?** - [x] Documentation update - [ ] Bug fix - [ ] New rule - [ ] Changes an existing rule -...