Let's play Self-bondage Bingo!
I wrote some Python code that generates Bingo cards with bondage related keywords. I have a couple of ideas on how to use it:
How to get cards? Ask me and I'll generate one or I can generate like 1000, put an archive here for download and you ask a rng for a number. Now they are 60 kB png's but I guess I can convert them to jpgs.
These are the keywords as I have them now. I pick 24 random ones from that list, I have no rules yet about limiting a category to max 3 or something so in theory you can get all items from one category which would make a rather though card I guess.
If you want the keywords more tailored for your taste just pass me the list and I'll generate a personalized card for you. I'll also accept submissions to add to the list as this was what I could think of from the top of my head right now so it reflects mostly my taste I guess plus some random stuff I could think of.
Anyway, here are some examples:
That's just 3 but you get the idea.
What do you think?
Edit: I managed to get the file size down, a zip of 1000 cards is 13 MB.
(This post was last modified: 16 Jun 2024, 16:06 by Anne.)
I wrote some Python code that generates Bingo cards with bondage related keywords. I have a couple of ideas on how to use it:
- Just for me: I generate a card and then do self-bondage sessions where I tick off one, but hopefully multiple, of the squares and try to get a Bingo in as few sessions as possible
- for two or more: generate a card and then do sessions and see who's first to get Bingo
- multiple players: you're not doing sessions but you each have a different card and tick of boxes when I post a video, then see who's first to get Bingo
How to get cards? Ask me and I'll generate one or I can generate like 1000, put an archive here for download and you ask a rng for a number. Now they are 60 kB png's but I guess I can convert them to jpgs.
These are the keywords as I have them now. I pick 24 random ones from that list, I have no rules yet about limiting a category to max 3 or something so in theory you can get all items from one category which would make a rather though card I guess.
Code:
EYWORDS = {
'BONDAGE': [
'HOGTIED',
'FROGTIED',
'SPREAD EAGLE',
'CHAIR TIED',
'TIED STANDING',
'BALL TIED',
'CRUCIFIED', # standing spread eagle or T-pose
# 'SUSPENDED', # taken out for safety
'MUMMIFIED',
'BOX TIED', # arms parallel behind back
],
'CLOTHING': [
#'NUDE', # We don't do that here
'FULL BODY',
'LINGERIE',
#'PANTYHOSE', # goes without saying ;)
'COSPLAY',
'HIGH HEELS',
'CORSET',
'GLOVES',
'SWIMSUIT', # I had to include this one, feel free to comment it out if it's not your thing
'CROSSDRESS',
],
'TOYS': [
'VIBRATOR',
'DILDO',
'ANAL PLUG',
'(BALL) GAG',
'MASK/HOOD',
'BLINDFOLD',
'EARPLUGS',
'HANDCUFFS',
],
'LOCATIONS': [
'BEDROOM',
'KITCHEN',
'BATHROOM',
'LIVING ROOM',
'OUTDOORS',
'OFFICE',
'BASEMENT/CELLAR',
],
'MODIFIERS': [
'LATEX/RUBBER/PVC', # I'm grouping these together because shit is expensive
'LEATHER',
'SHINY SPANDEX',
'MONOCHROME', # limit yourself to one color
'COLOURFUL', # make it colourful
'ORGASM', # add an orgasm while in bondage
'TIME RELEASE', # add a time release element to the bondage, ie a key in a block of ice
'1+ HR SESSION',
'(DUCT)TAPE'
],
}
If you want the keywords more tailored for your taste just pass me the list and I'll generate a personalized card for you. I'll also accept submissions to add to the list as this was what I could think of from the top of my head right now so it reflects mostly my taste I guess plus some random stuff I could think of.
Anyway, here are some examples:



That's just 3 but you get the idea.
What do you think?
Edit: I managed to get the file size down, a zip of 1000 cards is 13 MB.