Skip to content

Commit

Permalink
add word pool
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdfish committed Nov 29, 2020
1 parent 6af0fd4 commit c90dbbb
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,20 @@ word_pool = map(_->randstring(4), 1:50)
words = sample_words(word_pool, n_rows, n_rows)
card = make_card(words; size=(300,300))
```
<img src="extras/example2.png" alt="" width="300" height="300">
<img src="extras/example2.png" alt="" width="300" height="300">

## Halmark Christmas Bingo

Bingomatic™ includes a bonus word pool for Halmark Christmas Bingo, a $19.99 value, absolutely free! Variations of this coveted game include screaming each time the [secret word](https://www.youtube.com/watch?v=gxMZgeBlqzQ) "Christmas" is said.

```julia
using Bingomatic, Random
Random.seed!(1225)
pkg_path = dirname(pathof(Bingomatic))
path = joinpath(pkg_path,"../extras/word_pool.csv")
word_pool = CSV.read(path, DataFrame)

words = sample_words(word_pool.words)
card = make_card(words; word_size=11, size=(630,630))
```
<img src="extras/christmas_bingo.png" alt="" width="630" height="630">
Binary file added extras/christmas_bingo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions extras/word_pool.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
words
Magical first snow
Workaholic parent
Quaint small town
Santa saves the day
Matchmaking kid
Jaded career person
Snowman
Petty conflict
True meaning of Christmas
Santa Claus is real
Christmas miracle
Excessive decorations
Awkward kiss interrupted
Montage
Snowball fight
Mistletoe kiss
Foregoing responsibilities for Christmas
Reminiscing about past Christmases
Parental disapproval
Spoiled child
Religion shoehorned in
Christmas carol/singing
A big event ruined
Winter Sport (e.g. sledding)
Hot cocoa
Eating Christmas cookies
Looking at an old photo
Wearing Christmas outfit
Looking for perfect gift
Lacking Christmas spirit
Demanding boss
Man rescues woman
Inappropriate cold weather attire
Cancelled flight
Child makes a wish
Bungling Christmas activity
White protagonists
Santa denialism
Snow on Christmas
Christmas sweaters
Happy ending
Christmas wish granted
Mending broken family
Grouchy character apologizes
Overly happy store owner
Poor work performance
Christmas v work conflict

0 comments on commit c90dbbb

Please sign in to comment.