Website
Sixzoot Rummie [Free]...
So with the two jokers we can have the following table for 6 of a kind and upto runs of 7, and with the usual minimums of a 3 and a 4.
4 suits | blacks/reds | suit |
---|---|---|
10 | jr | Black/Red |
9 | A | Spades/Hearts |
8 | K | " |
7 | Q | " |
6 | J | " |
5 | A | Clubs/Diamonds |
4 | K | " |
3 | Q | " |
2 | J | " |
Or this website makes a suitable gift template. Happy official December hasn’t started yet day.
Works...
This page is about the ongoing status of website construction. It’s not the usual of “perfect” with nothing ongoing. Check here if things are going strange.
Typescript...
Ah, after a bit of setup, some peace. So renaming the .js
to .ts
and
changing the include in the header to .ts
too, typescript becomes easy.
Sure, there’s the index.d.ts
to allow window.<name>
assignments,
and adding in a few type definition files along with the dom
library.
Then there’s an ease of using Function
as a callable type, or { prop?: type }
for when some functions need particular properties in the JSON. That then
just left the async
/await
hell, which can be ignored quite a bit, needing
just (async () => { await ... })()
as a wrapper when unsure if you should
allow a Promise
to pass back or not as it gives you back a normal function
return.