#brainfuck
Explore tagged Tumblr posts
Note
Mmm… I’m gonna put my cock in your fucking brains and lobotomize you with it. I’m gonna leave you with girlcum dripping from your nose and mouth after I creampie your stupid fucking brains~
Cw: brain injury, ego death, objectification
Oh goddess yes please-
Please fuck my brains to mush. I want you to stick your gock in my brain until I'm a lobotomized pleasure pet, unable to even conceptualize an idea other than the cock or cum that's replaced my brain. Take away my personhood and delete my personality. Make me your cum-brained fleshlight. Just an unthinking object you own. I wanna feel your thick girlcum splurting into my delicate grey matter, seeping into my neurons and recklessly erasing everything that isn't pure, unbridled pleasure
#brainfuck#brain injury#ego dissolution#ego death#cw: gore#cw death#edging my mind away#dms open#good girls rub their minds away#attention slvt#attention wh0r3
22 notes
·
View notes
Text
- Ada
- Agda
- Julia
- Kotlin
- Maple
- Nix
- Ruby
my beautiful children <3
Programming Languages that would be nice names for a baby girl:
Lua
Perl
That's it I guess.
#brainfuck#programming languages#gimmick blog#plaintext#agda and kotlin are a bit of a stretch but i like them
503 notes
·
View notes
Text
quit brainrot. unfollow trolls. read essays. go down rabbit holes. have a calendar. maintain a todo list. read old books. watch old movies. turn on dnd. walk with intent. eat without youtube. chew more. train without music. plan for 15 mins. execute. organise your desk. take something seriously. read ancient scripts. act fast. find bread. eat clean. journal. save a life. learn to code. read poetry. create art. stay composed. refine your speech. optimise for efficiency. act sincere. help people. be kind. stop doing things that waste your time. follow your intuition. craft reputation. learn persuasion. systemise your day (or don't). write. write. write. write more. iterate violently. leave your phone at home. walk to the grocery store. talk to strangers. feed the dogs. visit bookstores. look for 1800s novels. experience art. then love. sit with a monk and offer them lunch. don't talk shit about people. embody virtue. sit alone. do something with your life. what do you want to create? turn off your mind. play. play a sport. combat sports. notice fonts in trees. fall in love. notice patterns on a table. visualise it. talk to people with respect. don't hate. be loving. be real. become yourself. cherrypick your qualities. discard the useless. rejections aren't permanent. invite what aligns. accept what does not. read great people. be different. choose different. do great work. let it consume you. lose your mind. value your time. experience life.
#n1pp#glow up#glow up tips#glow up journey#glow up hacks#glow up guide#glowingskin#it girl#becoming it girl#it girl moodboard#it girl aesthetic#it girl guide#it girl outfit#that girl#that girl guide#that girl aesthetic#that girl moodboard#that girl outfit#becoming that girl#aesthetic#motivation#study motivation#motivating quotes#get motivated#self care#self love#self improvement#be confident#vision#brainfuck
9K notes
·
View notes
Text
Heyy, it seems like its time for me 🫣

I got challenged to do so! And everyone is welcome to command my edging 🥺💓
The challenge is put on for a week, so lets see how viral this goes xwx
#stupid#woman inferior#my post#edging challenge#brainfuck#brain damage#braindance#brain drain#corruption kink#goondoll#goon and edge#no spam
510 notes
·
View notes
Text

Dronemask
I want to be a Drone. Maybe you ask why? The Answer is simple: My own Dronemask. Such a simple tool for any Drone. Put it on and all the noise fades. Put it on and focus on obedience. Put it on and focus on pleasure. Put it on and focus on the important things.
What are these importnat things, you may ask? For me its simple. Let the spiral control me. Let my Mind melt. Let my Brain be altered. Enter a State of obedience and submission to the one that wants me. Something that can only be achived by the Dronemask.
So will you be the one opening that door for me? Will you be the one putting me in my place? Will you fit my being with Latex encasing that essence of pleasure? Will you trance my Mind and brainwash me into submission? Will you put that Dronemask on me?
I am always just a few click away for you.
#drone#rubberdrone#dronification#hypnosub#brainfuck#brain dump#mind break#brainwashing#cvmdoll#mindfuck#dumbification#mind control#rubber drone#brainwash#mind conditioning#rubberdoll
914 notes
·
View notes
Text
Good Girls deserve a nice brainfuck to help them get into the headspace of being a dumb bimbo!
#bimbo doll#bimbo girl#good girl training#bimbo training#bimbofied#dumbification#hypnosis#bimboification#bimbo brainwashing#brainfuck
221 notes
·
View notes
Note
++++++++[>++[>++[>+>++>++>+>++<<<<<-]>>+>>+<<<<<-]<-]>>>>+++++.<.>---.<.>>+++.<+ ++.-.>++.<<.>>>>----.<+++.
++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>-----.>+++++++++++++++++++.----------------------.++++++++++++++++++++++.----------------------.++++++++++++++++++++++.----------------------.++++++++++++++++++++++.----------------------.<<++++++++++++++.------------.>>+++++++++++++++++++.------------.-------.+++++++++++++.---.<<.>>++++++++++++++.----------.++++++.<<++++++++++++.------------.>++++++++++++++++++++.>--.--------------.+++++++++++++.<<+..-.>++++++.+++.+.-.-.
#robot girl#robotgirl#robotposting#transfem#transhumanism#brainfuck#encryption#i love brainfuck code!!#thank you for the ask!!
33 notes
·
View notes
Text
Because of the way floating point numbers work, as they get larger there comes a point where you actually can't increment them. They simply get too imprecise to encode a difference of 1.0f. Which is to say, for sufficiently big (or, I guess "magnitudinous") values, x == x + 1. For high-precision floats, like IEEE 754 double-precision and quadruple-precision and x87 extended-precision floats (among others), these thresholds are really quite large -- in the trillions at the lowest -- but for the humble 32-bit float it's not tremendously big, only 16,777,216 (or -16,777,216).
Now, when it comes to programs that do lots and lots of incrementing and decrementing, what does my mind go to? Brainfuck. Brainfuck is built almost entirely around incrementing and decrementing. Historically, this has been a source of problems for implementers, as there's no immediately obvious way to handle overflows or underflows. Should the cell array wrap around? Should the program simply segfault? Should cells be 8-bit, or bigger? Should we simply continue allocating memory as the cell pointer gets further from the origin? How should we handle negative cell pointer values?
Well, we can kill ...one bird with ...another, already dead bird here: make everything use 32-bit floats! We don't have to worry about overflows anymore, the cell pointer will just get "stuck" after a while! This also really simplifies the memory model: we can just statically allocate 33,554,433 doublewords on program startup (mere megabytes) and be assured the cell pointer will never escape into uninitialized memory. We don't have to worry about the cell values themselves either -- they'll bang up against the same thresholds.
I wrote a highly unsophisticated compiler (with NASM as an assembler backend) several months ago using this idea, and I think I'd like to come back to it -- there's a funny sort of inelegant elegance here.
17 notes
·
View notes
Text

OMG... far too excited seeing this dev'd
"Brainfuck is an esoteric programming language created in 1993 by Swiss student Urban Müller. Designed to be extremely minimalistic, the language consists of only eight simple commands, a data pointer and an instruction pointer."
21 notes
·
View notes
Text
+++++++[>++++++++>+++++++<<-]>++++.>++.
10 notes
·
View notes
Text
Dronemask 2
I told you it was just a question of time.... Someone was willing to invest time into me.... It finally happened.... I finally got it.... My own Dronemask. You know I couldn't wait. You didn't want me to wait. You told me to put it on. You made me feel good as I did what you asked of me. As it seals onto my Face and my muscle can finally relax. My red eyes open to a pitch black darkness. I can feel them dotting around before they come to a stop. Because the screen is not black anymore, and I can see color's, shapes and layers that catch my attention immediately. It encourages me to follow and relax. My Mind getting deflated and worries wash away from me. It was a beginning to a journey that I don't know the end of yet. All I know is that I want it and I want you. You gave me my Dronemask, so you deserve my Time. My mind is getting submissive and obedient all over again. The Journey begins and you play an important part. But that's all I gathered from this first session.... Is this what I wanted? Yes! I am now more in peace with myself. Ready to embrace my new Dronemask...
#drone#rubberdrone#dronification#hypnosub#brainfuck#brain dump#mind break#brainwashing#cvmdoll#mindfuck#dumbification#mind control#rubber drone#brainwash#mind conditioning#rubberdoll
199 notes
·
View notes
Text
I wish the brain had nerve endings for sexual reasons but the closest you can get is a dick going into your occipital lobe and cutting out your vision everytime it thrusts. Also it's vibrating
6 notes
·
View notes
Note
brainfuck("+++++++++[>++++++++++>++++++++++++>++++>+++++++++++>++++<<<<<-]>-.>+++.++++++.>+++.<---.>>++.>----.<<<<------.----.>>>>.<----.+++.<<---.+++.>>---.+.<<------.>>+++.>+.-.<<+++.>+++.---.----.+++.>.<<<++++.>>---.<<++++.>.")
>MNDFDGHA~<3<3<3 >I a,appreciate the compliment, User!!<3<3 >I'm not u,used to running Brainfuck coding,, m,my head feels dizzy watching t,the numbers go up~<3<3 >TThank you for the monitor p,pats too!!<3<3
#robot girl#robotgirl#robotposting#transfem#robot fucker#transhumanism#robotfucker#robophilia#brainfuck
25 notes
·
View notes
Text
Tierlist part 6: Brainfuck
Eso lang time! Brain fuck is one of the more known eso langs but has a weird reputation for being cursed. I find it quite cool as such a simple construction of a language can lead to Turing-completeness. The main problem is that the smaller language nanofuck has been discovered. But it is still a solid A tier until picofuck is discovered.
Part 5
5 notes
·
View notes
Text
„Töte mich mit deiner Ehrlichkeit, aber lass mich nicht mit deinen Lügen glücklich werden.“
6 notes
·
View notes
Text
------[-->+++<]>.+[->+++<]>.-------.--[--->+<]>-.[---->+<]>+++.+[->+++<]>+.+++++++++++.[--->+<]>-----.[-->+++++++<]>.++.---.--------.+++++++++++.+++[->+++<]>++.++++++++++++..----.+++++.-------.-[--->+<]>--.++[--->++<]>.-----------.+++++++++++++.-------.--[--->+<]>--.[->+++<]>++.++++++.--.--[--->+<]>-.[->+++<]>++.++++++++++.+++.--------.++++++++++++.+[---->+<]>+++.---[->++++<]>.+[->+++<]>++.+++++++++++.-.-[++>---<]>+.[->+++<]>+.+.+++++++++++++.++++++.-.-[->+++++<]>.+[-->+<]>.---[->++++<]>-.++++++.+[->+++<]>.++++++.+[->+++<]>++.+[--->+<]>++.[-->+<]>+++.+[-->+<]>.+[->+++<]>++.[--->+<]>+.--[->+++<]>+.++.+++++++++++.++++.-----------.++++++.-.+++++.[->+++++<]>.+[-->+<]>.++[--->++<]>.---.-------.[--->+<]>----.+++[->+++<]>++.--[--->+<]>---.---------.----.[--->+<]>----.[->+++++<]>.+[-->+<]>.>-[--->+<]>.+++.+[--->+++++<]>.+[-->+<]>.++[->+++<]>+.++.+++++++++.------.+++++++.[->+++++<]>.
#brainfuck#programming languages#gimmick blog#evaluation: what do programming language blogs talk about? syntax? exceptions? libraries? UX? girls?
5 notes
·
View notes