Makes me recall “BytesJack” from the old 10kb build competition: http://heliom.github.io/bytesjack/
Show HN: Blackjack Break, a minimal quick-play blackjack game
31–40 of 66 posts
Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#32Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#33Earlier quoted context omitted.
I've got a simple blackjack program[1] in bash that I occasionally play; it's ugly code, but it's pretty straightforward. More directly, I wrote (perl) a blackjack tester[2] to quiz myself, as well as a simple output of basic strategy[3]. I haven't touched these in half a decade, but seem to work fine! 1: https://github.com/Amorymeltzer/dotfiles/blob/master/bin/bla... 2: https://github.com/Amorymeltzer/sandbox/blob/m…
perl basic_strategy.pl | column -t
Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#34A bit relevent to this subject matter is a redesign of blackjack I finished awhile ago. I wanted to make game characters out of the cards and put the player in a dungeon-like environment rather than the generic game table.
Still working on v2, mainly updates to the graphics.
I put it on itch.io and you can download it for Mac, Windows, and Linux.
popup21.itch.io/popup21
Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#35Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#36Is there something like this, but for poker? The issues described by the author with most of the already existing offers are the exact same ones i have. I just want a poker game that isn’t slow, doesnt feel scammy with tons of dark patterns and microtransactions, and has a clean and simple UX. Great job btw, i definitely dig the overall feel of the app.
Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#37Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#38Very nice! It might slightly more comfortable to play if the dealer and player were differentiated better. Is the source code available?
Re: Show HN: Blackjack Break, a minimal quick-play blackjack game
#39Is this open source? I kinda want to try training a Blackjack AI, and the clean minimal design for here could help if I try giving the game state to the AI as an image. Also it would be fun to play with data of everyone's games if you're collecting them.
If your AI is any good it will refuse to play because it’s realized the house always wins. I spent a few hours watching card counting videos on YouTube to see if there was anything to it - didn’t matter who it was, they spent the entire time belly-aching because other players were getting “their” cards. Amazing how all these card counting schemes depend on everyone else playing perfect basic strategy.