Text
brainpy
i made a post i found before about something i saw called brain++ it was a very interesting concept, but i disagreed with a lot of how it was handled so i ended up reworking a lot of it and now im compiling my efforts here
im not the best at teaching programming, so its ideal that you or your subject have some idea of how programing works, though you dont need to know specific languages (this is based largely off of python and a bit off of the original which was c++, i used it on a subject who only knew c# and it worked fine)
with all that being said, the infodump is below the cut, and happy trancing!
the basics
brainpy is based largely off of python, so a lot of syntax and such is similar its also based off of brain++ which is object oriented, which i dont really have the time to explain the best, so i apologize if you or your subjects dont understand
basic safety info
this is all covered later on but the gist is: if the user (the subject) ever feels unsafe or uncertain about code at any point during running it, they force stop and go back to how they were before the program started, a backup if you will code is run as soon as the user sees 'import brainpy' at the start of a block of code, so be careful
installing
some of this might not make sense now, but i figured id get it out of the way now
i dont fully know the best method of installing brainpy. if i come up with a better one, ill change/add it here.
what i did with my subjects, was get on a voice call that also had a chatbox (i used discord, and voice isnt strictly nessecary, but i find it easier myself) and just went over each function and explained as i went along, and ran example code in the chatbox when i explained it
intro to brainpy
User
(ill be referring to the subject as user)
brainpy is object oriented, ive said that about a dozen times now that means whenever a function is called, its called by the part that uses it ¹ (view example 1)
certain parts though, are nested, so to reach them you must call prior parts ² parts are nested as such:
self body components brain thoughts individual thoughts, i.e "i love being programmed" memories individual memories, i.e the memory of trance emotions individual emotions/feelings, i.e the feeling of trance intelligence
self: the user and everything it knows about itself, i.e. its name, other people/relationships, its possessions, the state of whether it has done something, and just general facts about its environment such as if its at its desk ⁴
body: the users body, as a whole
components: parts of user's body, you dont actually call it as components, you call it by the component's name, leftArm, rightLeg etc.
brain: generally the most used part, though moreso for being a gateway to thoughts and emotions. generally contains anything mental
thoughts: stored as a list of strings, each string being its own thought. the more times a string appears in thoughts the more focus it has from user
memories: stored as a list of strings, however clearing or deleting a memory from memories does not delete the memory, rather it revokes user's access to the memory
emotions: stored as a dictionary, which are complicated so ill simplify; each emotion has a name and a variable for how strongly the emotion is felt from 0-100 with 100 being the strongest
intelligence: stored as a number from 0-100, 100 being normal function, and 0 being well, dumb
Basic syntax
each program starts with 'import brainpy' and ends with 'terminate'. ¹ when a user sees 'import brainpy' they will immediately run any code in that block until they see 'terminate'. after a user terminates their brain goes back to idling as it was before, but any emotions thoughts or memories that were modified during the code will persist.
forceStop also stops the program, however it acts more as a saftey net. whenever a program is forceStopped the user loads a backup of before they ran the program. this means any modified emotions memories or anything else will revert. its worth noting that forceStop is hard coded to immediately run if the user ever feels unsafe or uncertain running code
comments: comments in brainpy are notated with 3 hashtags. ³ comments cannot be read by users no matter how hard they try, even after the program has been run.
Ifs Loops Whiles and Triggers
if(bool) - if the boolean is true, the code is ran. otherwise it is skipped. ⁴
loop(int) - repeats the block of code integer times. ⁴ notably you may need to suggest that the user's loop counting algorithm is more advanced, as sometimes the haziness of trance messes with counting
while(bool) - kind of like a mix of if and loop, while the boolean is true the code is repeated. ⁴
trigger(str) - like a python function. is called and the code inside is ran with self.[string name] ⁵
end - ifs loops whiles and triggers are all marked with an end to tell where the code they contain stops break - ends all nested ifs loops whiles and triggers and moves on to the rest of the code ⁴
Methods
new - adds a new item to a list or dictionary. ² ran on a list or dictionary
clear - removes all objects from a list or dictionary ² ran on a list or dictionary
print(str) - user prints the string. ¹ notably, what printing means depends on context and is decided by the user. the user decides if it would be more appropriate to say, type, or write the string. ran on self or body
perform(str) - the user, or a component of theirs performs the action specified in the string ran on body or a component
feel(str) - the users body or a part of it feels/senses what is specified in the string. used for any kind of hallucination. ran on body or a component
wait(int) - waits integer seconds before proceeding ran on self
waitUntil(bool) - waits until the bool is true. good for if the user needs to wait for something to load. ran on self
Variables
i dont have enough mental stamina to explain what a variable is, nor do i think you would have made it this far without knowing that level of basic programming, so im going to skip over it and go over how variables and operators are notated
value: what is stored within the variable string(str) - a line/block of text, notated with quotes integer(int) - a number. try to keep them smaller because subjects arent the best at quick mental operations with large numbers list(list) - a list of variables, usually strings dictionary(dict) - these are complicated, so ill simplify, theyre basically like list but each string in the list has variable(s) associated with it. ³ boolean(bool) - either true or false. code that takes bools to run only run if the boolean returns true. path(path) - makes calling things easier and shorter, though somewhat intensive on subjects. ³
operator: what modification or check is applied to the variable arithmetic: used for math + addition (notably can also combine strings) - subtraction (notably can remove strings from strings) * multiplication / division assignment: changes or sets the variable to something else = sets the variable to equal something else += adds a value to the variable (can be used with strings) -= subtracts a value from variable *= multiplies variable by a value /= divides variable by a value comparison operators: returns true or false based on a comparison == variables are equal < variable is less than value > variable is greater than value <= variable is less than or equal to value >= variable is greater than or equal to value != variable is not equal to value
examples
.1 (the . is so its not really big idk how to fix that)
import brainpy self.print("welcome to brainpy!") terminate
.2
import brainpy self.brain.thoughts.clear self.brain.thoughts.new("I love being programmed") terminate
.3
import brainpy ###sets trance to call emotions.trance.inensity self.brain.emotions.trance.intensity = trance trance = 100 ###puts the user as deep as possible forceStop
.4
import brainpy if(true) while(self.hasTumblrAccount) self.brain.intelligence -= 10 if(self.brain.intelligence <= 50) break end end end terminate
.5
import brainpy trigger("bark") self.print("I'm a good puppy! Wrufh!") end self.bark terminate
Extras and Beyond
Last Notes
just a few things worth noting brainpy has support for libraries, but you need to write, doccument, and install the libraries yourself. once a library is installed to a user its imported the same way brainpy is after brainpy is.
seeing as its not actual machine code and theres no assembler, the code doesnt need to be perfect. there can by minor typos or syntax errors as long as the subject understands the code or doesnt notice theyre there. dont stress yourself about syntax too much
as i said earlier under loops, you might need to suggest to the subject that they retain their arithmetic abilities despite being in trance, because sometimes subjects can struggle with math if theyre in trance.
if you plan to use brainpy yourself id appreciate it if you credited me for it as this took a fair amount of work to make.
i doubt ill make any sort of public installation file, as i think it would be very hard to do with the nature and complexity of this, though if anyone were to, id recommend doing it through a video, so you can have displays onscreen while the subject listens to you
Extras
i think ive done most of the work on this i feasibly can do, but if i do do any more work ill do it under the #brainpy tag, i might also do it under this post. if any of you want to make libraries, id appreciate it if you tagged me or used #brainpy so i could find it!
if you read the brain++ original doccument or are just generally observant, you might have noticed i didnt use the subconscious at all. the main reason i made this was because i didnt like the conscious subconscious model the original used, as its mainly from a lot of old disproven neuroscience. the other main reason i wrote this is to be hopefully easier to understand than a java and c++ based doccument.
if any of you have and questions or suggestions on installing brain++ you can reply to this post or send me an ask about it
special thanks: @jadedwoman's android(?) sideblog @j4d3d-w0m4n for being a large inspiration to do this user @drone-0613 for finding and posting about brainpy the original creator of brainpy, whom i do not know. im really sorry for not crediting them but as far as i can tell i cant find them from the doccument or pastebin they linked to it. regardless them making brain++ is the reason i embarked on this journey, and thus i am grateful that they did. the subjects whom i tested this on who for the time being will remain anonymous
im sorry if this is really amateurish, i tried my best. if i release any updates to this to improve it like i said, ill use #brainpy, and edit or reply to this post. i hope you all enjoy <3
156 notes
·
View notes
Text
This just in: replacing the word edge/edging with come/cumming. As in you have to be grateful cause you did just cum and thank him properly. You'll ask for permission to cum. And you will probably be allowed.
You'll have to be thankful for being able to cum, but never having an orgasm again.
356 notes
·
View notes
Text
Gaslighting her into thinking she has a speech disorder, by continuously interrupting and falsely correcting her, until she actually starts to lisp and stutter 🥰
2K notes
·
View notes
Text
normalize calling your rapist a conversion therapist
104 notes
·
View notes
Text
People often talk about hypnosis as something floaty. Without weight. Filling your head with air, leaving you relaxed, serene, open. Suggestible.
But where's the respect for hypnosis that's thick like syrup, hypnosis that threatens to have you drown in it. Hypnosis that constricts and holds and makes you want to thrash to escape but you just can't. Hypnosis that feels like its choking you, forcing itself into you. Hypnosis that doesn't ask. Hypnosis that's a hand round your throat and a growl in your ear. Insistence. Demands. Brains screaming as they are forced into a new shape.
I mean, I guess relaxation is nice, too.
2K notes
·
View notes
Text
neeeeed need need neeeeed
As your Bimbo wife is finally undressed, you finally get on your knees, ready to savour your pretty little Dollies, yummy Juices.
Her legs sheepishly spreading, her glistening pink pussy shown off for your eyes only. Always calling herself a "Bimbo", always so cute, confident.
Yet, in this vulnerable position, laid bare to her Man...she's blushing, hiding her pretty, blond face, and gently shaking. She's just waiting for you to finally savour her, as you're her one and only, even if she shows off to others.
31 notes
·
View notes
Text
This new Pink Yoga™️ trend has some...unforeseen side effects 🩷
1K notes
·
View notes
Photo

Please Reblog if you Like. It helps a world.
———————————————————-
If you’d like to Support Me, you can Donate on Patreon.
I also sell Kinky Comics!
And Art Prints.
……………………………………………………………………………………………
For more of my writing and illustrations, do visit
My website | My Twitter | Pixiv | DeviantArt | Gumroad
78 notes
·
View notes
Text
Bimbo Tarot
You pick up a Tarot deck and feel a shiver cut through your body. You still draw from the corrupted Tarot deck, unable to stop yourself:
0 The Fool Your ability to reason or problem solve vanishes as you become too dumb to use or really understand any knowledge that tries to fit in your silly little head. At the same time, you're remarkably unconcerned about how dumb you are; frankly, it's relaxing being this stupid!
I The Magician You are the definition of sultry. The way you walk, the way you make eye contact, and even the scent of you; every element is designed to tempt anyone around you. You are a living temptation with the libido to match.
II The High Priestess Gender is your bitch. Despite your femininity, your fashion and energy is quite masculine. Your hair is kept short and your butch wardrobe compliments a lean, strong build. Regardless of the gender of the person admiring you, there's something inherently queer about lusting after you.
III The Empress You've been gifted with many feminine blessings, but none greater than the full, bouncy set of breasts resting on your chest. These natural, abundant tits are a focal point, dragging the eyes of everyone you talk to downward. Everyone wants to fondle and touch them, which is great, because they're incredibly sensitive and demand to be touched.
IV The Emperor You are the embodiment of "legs for days," with another 6+ inches of height added to your height exclusively from your long, luxurious legs. You can stand tall and authoritative on glorious heels, as your feet now feel discomfort standing flat-footed. You're made to tower over others with flawless legs that seem to never grow a single strand of hair as a complementary bonus.
V The Hierophant Service is an important virtue, and you are made to serve. All dominance leaves your soul as you feel the overwhelming need to submit and serve whoever commands you. Authority makes you quiver and you could get off to fulfilling the demands of others. Your body yearns to be used, making you the definition of "submissive and breedable."
VI The Lovers You've experienced a career change. In fact, you've lost any skills associated with your current profession, replacing them with a deep knowledge of sex and performance. You check your social accounts and realize you have quite the following! As sex workers go, you're going to be Little Miss Popular! Whether you choose stripping, OF, or old fashioned prostitution, you're going to make a killing in your new life.
VII The Chariot It's good to build on a strong foundation, and your "foundation" is not lacking. From the waist down, you are thiccc with at least three Cs. Your thighs are full and meaty, paired with wide, flaring hips. The fullness even adds some jiggle to your backside, making sure you're the full package. Some of the excess fat of your upper body has even migrated down, slimming you on top to contrast this new absurd pear build.
VIII Strength Strength comes from within, but it's nice when the outside reflects the inside. Along with a swell of confidence, your body loses plenty of fat and your muscles tone until you're a buff little gym bunny! Your style even leans into yoga pants and sports bras, which encourage your gains—specifically, follower gains now that you're a certified fitness influencer!
IX The Hermit Peace comes from solitude, but solitude is boring. You love being around people, but you do free yourself from attachments. You're incapable of holding onto a serious romantic relationship. It doesn't help that you fuck half the people who smile your way. You're promiscuous, but plenty of people love you for it—for at least a night or two.
X Wheel of Fortune You have a taste for the finer things. You have access to plenty of money from an inheritance and whatever sugar daddies (and mommies) you woo. With such wealthy tastes in clothes, jewels, and gifts, people think you're arrogant. It's not your fault you're better than everyone! And yes, maybe it makes you into a mean girl, but better to be bitchy and fabulous than boring and poor.
XI Justice With Justice comes punishment, and nothing gets you off like being put in your place. You have a deep-seated degradation kink that is so tied to your sexuality, you struggle to feel attraction to anyone "nice." You crave someone who is going to insult you or humiliate you. If you've gone too long without someone calling you a pathetic stuff, you will start whimpering and even begging for it. Such a dirty girl!
XII The Hanged Woman People claim they value natural beauty, but you know we've come so far as a society not to embrace fakeness. Your tits are several size larger than they used to be, with a firm, orb-like fakeness from implants. Your face has been sculpted into a sleek, model-like appearance with some pouty lips, decorated with a permanent face of makeup. Add a nice BBL Drake would be proud of, and you're a testament to medical technology from top to bottom!
XIII Death You feel a sudden emptiness in your head and contact list. You've moved to a new place with no friends or family to your name. Each of those lost connections manifests as a new piercing, tattoo, or a vivid hair highlight. With a fresh start, you can be the alt rock goth girlfriend of someone's dreams; you just haven't met them yet.
XIV Temperance The party don't start til you walk in, and the club doesn't close without having to kick you out. You have a reputation in the city as a slutty lush, but you wear it with pride. All your nights are occupied with dancing, drinking, and party drugs. You're here to live in the moment, and that moment should be loud and blurry.
XV The Devil The Devil is in the details, and your most prominent details are your lips. You have swollen, pillowy lips pronounced enough that you see your top lip at the bottom of your vision. Those lips are naturally glossy and pink and big enough to leave a keyhole opening when you try "closing" them. Your lips and tongue are also sensitive as heck, leading to an addiction to oral sex. You could get off just by wrapping these DSLs around a cock or burying your face between someone's legs.
XVI The Tower The Tower is a sign of things crumbling and falling apart, and that's exactly what you do at the slightest provocation. The gentle breeze, someone brushing against you to get by you, or a particularly passionate gaze will send your libido into overdrive. Your hairpin-trigger only gets worse the longer you ignore it until you're a babbling, sweating mess desperately touching yourself in public. Be careful!
XVII The Star You have the biggest, most beautiful doe eyes, making it hard for people to take you seriously. Or maybe that's because you're also a total ditz. You're bubbly to a fault and constantly forgetting things. It isn't even that you're stupid, though you have been knocked down a few IQ points, but you're such a giggly airhead, no one believes there's much going on behind those beautiful eyes.
XVIII The Moon Of all the moons, you have the fullest. You have the kind of bubble butt rap songs are written about. Your new ass is full and bouncy while staying perky and round. You have inches added to your sitting height and getting pants around your cake is your new eternal challenge, but it's worth it for all the stares you get when you walk by.
XIX The Sun The Sun loves blondes, and you're certainly sun-kissed. Your hair falls around your face in blonde locks bleached by the sun, matching a love of the beach and water in your heart. You've got a glow from a life of (responsibly) sunbathing, with a smattering of freckles to match. Your body even adjusts to what your ideal "bikini body" so you can show off!
XX Judgement People might judge, but we're past being "not like other girls." You've embraced a love of all things pink and girly, embodying the bimbo aesthetic. Your room, your clothes, and your bubbly energy are all painted pink. You might even enjoy some pink highlights or a full head of bubblegum pink locks. No one has to take you seriously; you love your look, and that's more than enough!
XXI The World Life is about seeking fulfillment, and you love to be filled. It doesn't matter which hole, you crave for someone to cum inside you. When you've been stuffed and pumped full in the last week, you feel happier, you have more energy, and you're just luckier like the world is rewarding you. The longer you go without a creamy little treat, you will start to get needy, trying to seduce whoever might top off your tank.
After drawing 3 (or even 5) cards, you leave your reading, ready to embrace your new life! Be sure to tag or respond with your results!
562 notes
·
View notes
Text
A Bimbo's Quick Guide to Texting(or talking if you prefer)
Throw punctuation right out of your pretty little head. Maybe keep exclamation marks to show how excited you get over things, and question marks because you’ll probably be asking a lot of those. **you can also go for extra little details like turning off the feature to automatically capitalize words on your phone.
Exaggerate. You’re not “hungry”. You’re “soooooo starving!”. He doesn’t have a “big penis”, he has a “huuuuuge cock”. Extra lettering where you’d imagine a bimbo to drag words and using words with a bigger impact definitely make an impression.
Pause. If you’re into being a little airhead, pause like you’re collecting your thoughts. Using “like” and “umm” can be good here, but be watchful of not overdoing it otherwise it may seem “put on”. Which, to be fair, it probably is - but no one apart from you needs to know that.
Get excited. Giggle lots. Go cute. Say “yay!” when something goes your way.
Experiment! Find out what works for you and just have fun. If you feel like something doesn’t feel right - don’t use it. And if you have any ideas you think are great, go ahead and message me!
342 notes
·
View notes
Text
1K notes
·
View notes