Live data from Hacker News

Show HN: Blackjack Break, a minimal quick-play blackjack game

blackjackbreak.com

1–10 of 66 posts

Re: Show HN: Blackjack Break, a minimal quick-play blackjack game

#2
From the about page: Towards the end of 2017, I found myself wanting to play a quick game of something while I was working. That something turned out to be blackjack. I tried a few web-based games and downloaded a bunch to my phone. All of them either felt kinda scammy, were hard to look at, or just played way too slow. I like making things, so I made Blackjack Break. I hope it's a fun diversion for you like it is for me.

Re: Show HN: Blackjack Break, a minimal quick-play blackjack game

#6
post #4

Nice game. Would be nice to know when the deck gets shuffled for card counting purposes :)

I think it does that. I received a "(shuffled)" indicator after a deal several hands in.

https://blackjackbreak.com/about#feedback

>Dealer shuffles after dealing 75% of the deck

Re: Show HN: Blackjack Break, a minimal quick-play blackjack game

#9
post #7

Very nice. Any plans on open-sourcing this? I'm a newbie at blackjack and have been wanting to build a similarly minimalistic version adding a "strategy feedback" mode to help me memorize basic strategies.

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/master/blackjac...

3: https://github.com/Amorymeltzer/sandbox/blob/master/basic_st... but I recommend running it as perl basic_strategy.pl | awk '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11;}'` for nicer output

Post reply on HN