#write c programming
Explore tagged Tumblr posts
Text
alfred, after reading 2 leters taht had ben delibered to him by a glowing green dog, noded an started to prepare diner before puting a single mesage on the family and friends grup chat.
Ined, this neded a stomash full of food.
Some time later and Alfred decides to drop the bomb.
Alfred: So, today a letter aribed to the maneor. It was sended by both, the CSD and that facility that aided the laters Masters Tom and Marta Wayne..."
Bruce, all confused because no one told him he was a in vitrus boy: My parents what?"
"...Its apears that a tragic had happened in the adoptive home life of Master Bruce´s biological litle brother, and both the state and the Infinite Realms sems to think this house is the perfect place to him and his mirror born twin sister. I expect you all to read this informative triptic because Yung Masters Dany and Dani (neme changing pending) are now half of a rare and prety multidimencional guarded species. An I will be damed and put my two weeks advice if my litle new sons are damaged by this emotional conspirational family"
Jackson was the frist one to react.
"Holy shit! this time te suprised new silbing one is Bruce?!"
"Oh so is it hereditary... " was Dick reaction
"A rare and delicated species you said? I shal go to therapy then." was Damian two cents before going to the library in seearsh of a good candidate.
Menawile... Bruce had yet to rebot.
Tim: okay but how jung?
Alfred: human 11 yeears old, and in ghost form 5 months old. Little Dani is just 2 months old. ¿Could you belive it? Please Miss Kent, go and give this nasty Master man a beaten up could you? i would go after him myself but i need to take care of the litles halfas.
Batfamily: WHAT THA FUCK?!
#dp x dc#dpxdc#i do not know how to write on english and somehow google traslate is baned on my work internet#wtf would you ban someting like that on a friking public university librery?#hello? we have a multi international etchange program?!#anyway#Danny had his accident early#dany and dani are new bat babs#is Bruce turn to be soked by surprice brother and adoptive silving too#Martha or thomas had some... isues and they decided to try the invitrus fecundation#they did give multiple samples.... and donathed the rest#the Laterns were there before the wig and good fenton parents#so bad they had to rip early :c#feel free to ad or use!#au#Dmian going to terapy and finding out he and fhater were autist the wole time#the danies got the ADHD all to themselves
76 notes
·
View notes
Text
Friendship ended with C#, now C++ is my best friend.
69 notes
·
View notes
Text
Honobono & Miden the mute Amemura 5
#hypnosis mic#honobono keitoin#ramuda amemura#this is miden’s pov of his role in PoW & relationship w/ hnbn#hes naive and romanticise the situation as hes programmed#I hope it shows that I don’t have a high opinion of rei regarding the ammr proj#this took me so long b/c I suck at writing monologues#fanart#my shit
89 notes
·
View notes
Note
Hiiii ! Hope this blog isn’t dead — I just wanted to ask what the differences were between posts that are tagged Oekaki and Not Oekaki — does it depend on the forum it was posted on, or the art style? It’s a little confusing to me since I haven’t heard this term before. ^^
Hi, the tags "oekaki" or "not oekaki" are how we categorize which pieces were drawn on an oekaki using the java applet drawing programs. Oekakis were online message boards that provided onsite drawing programs for you to draw on, which was often the next most accessible drawing program at the time next to MS Paint.
For the time period we focused on, the only available java applet drawing programs on oekakis were OekakiBBS (basically superceded by PaintBBS), PaintBBS, and ShiPainter. They all had little their little quirks and techniques that are visible on finished drawings drawn on an oekaki. If we can tell from these quirks that the drawing was likely drawn in an oekaki applet, we tag it as Oekaki.
Cy
#asks#for some examples: a canvas size that is square and is in a multiple of 100#most oekakis default canvas sizes were 300x300#and most people would only make it bigger if they planned ahead#other tips off are the font because they only had one font available#colors that values are all multiples of 5 because fine grained color choice was annoying to do#writing out the RGB values of a color instead of hex because oekaki applets cant color pick and we have to remake the colors in applet#lots of dithering because oekakis had their own dithering tool#1 pixel thick biezer lines having extra pixels instead of being smooth b/c its implemented differently than MS paint or other programs#a lack of anti aliased lines because pixel was easier and the programs smoother options were very streaky and hard to use#this is just off the top of my head#no pen pressure for 99% unless you were the weirdo who used shipainter AND had the plugin that allowed pen pressure
16 notes
·
View notes
Text
Continuing with our project’s upgrades, we are addressing the character class! Let’s clean it up!
youtube
#shawnthebro#ue4#unreal#stb#tutorial#youtube#unrealengine#unrealtutorial#unrealengine4#programming#UE#ue5#fighter#indie fighter#fighting#games#fighting game#how to make a fighting game#how to make your own fighting game#how to make a game#c++#code#coding#program a game#program#write code#character#class#character class#clean code
2 notes
·
View notes
Text
Got jumpscared by my own full legal name showing up in my email notifications bc I forgot I emailed my code to myself today just in case my VM ends up stopping working again (I got nervous & didn't wanna lose my progress lol)
Goldfish level memory retention
& the funny thing is that the email itself is just. This

Full Legal Name code • hi
#speculation nation#title 'code' email is just 'hi'. with the .c file attached of course#honestly i had a very productive day in lab today. i got the core structure of the program down and made sure it all worked#testing it with One of the sorting algorithms. and it worked!!#the lab is to code functions for different kinds of sorts. like bubble sort selection sort and uhh. some other shit idr rn#and have the functions take timestamps from before and after they run the sorts to calculate the elapsed time#and we have to run this for array sizes of like. 10 50 500 etc etc up to like 50000 or smth? if i remember right.#and then once all that's done we take the output and graph the time elapsed for each type of sort/search per array sizes#so today at lab i made the random array generator function. a swap function. the execution function. bubble sort. and main.#main calls the execution function passing in the array sizes. execution(10); execution(50); etc#execution defines the array of that size. then calls the random number generator to populate the array. then passes it to the sort functions#tested with my one bubble sort function. which finished in like 0.00003 seconds or smth for array size 10#BUT taking the time stamps was tricky. there are a lot of ways to do that. and time(); in c is in full seconds#i ended up asking the TA if he had a recommendation for what to use bc theres a LOT of time functions out there#and full seconds isnt precise enough for this purpose. & he recommended clock()!!#records number of clock ticks which is NOT the same as seconds. but when u divide it by uh. forgetting it rn but it's a constant#that will turn it into actual seconds. clock tics per sec?? smth like that.#so anyways very productive 👍 i just need to set main up to call execution function for all the different array sizes#and then write all the functions for the different sorts/searches. but i have the core structure down with the bubble sort function#(specifically with the time stamps and the print function after) that i will copy-paste for all the other functions#and then inside them i put the basic code. none of it's complicated. all can be found on the internet easy.#SO!!!!! honestly i think itd take me less than an hour to finish. tho plotting out that graph is going to be annoying#something like 6 sizes per 5 sort/search functions. painstakingly copy pasting each one into excel or smth lol#but yea im content with how much ive gotten done. yippee!!!!#now i just need to finish my web programming lab before sunday night. blehhhhh
2 notes
·
View notes
Text
i don’t know how to feel about the fact i'm good at writing child grooming like. that’s such a weirdly specific and dark niche to be able to write and it makes me very confused sometimes.
#like i mean. i'm a horror writer. the grooming in my fics obviously is not a good thing#i don’t think i'm a bad person for writing abuse as a bad thing#and it's kinda necessary considering I mostly write c!tommy and he was like. canonically groomed.#that’s what exile was. grooming isn’t just for csa. emotionally conditioning someone into committing crimes is literally like#the textbook definition of grooming. and the legal one too.#and like i'm also writing metal a lot recently and like. she was very literally programmed into being a child soldier#that’s like. also an inevitable thing i'm going to discuss with her#but like. man. it is definitely weird to be most skilled at writing depressing fucked up shit sometimes
6 notes
·
View notes
Text
I am just another victim of the Microsoft Code Signature Cartel
#I write C++ code in Microsoft Visual Studio because Microsoft makes it hard to compile C++ code the regular way#Visual Studio forces its libraries into my program even though I don't need it so I need to make an installer#Microsoft flags my installer as malware because I don't have a code signature#Microsoft sells code signatures
2 notes
·
View notes
Note
Through what medium do you primarily write? (Pencil, computer, voice to type, old timer typewriter, what?)
I type on my laptop in microsoft word. I used to write with pens and notebooks or booklets of printer paper folded in half and stapled when I was a kid (I wasn't allowed to have my own phone or laptop until I turned 18). I do occasionally write on paper if I have an idea when I'm traveling or if I'm doing a description study.
A description study is when you sit quiet and alone in a place and descriptively write down on the paper everything that you can see, hear, smell, feel, and notice about the place you are at. It's very handy if you travel to a different biome than where you normally live, like a desert or the prairie. You can save the description and use it later in a story when the characters are in a desert. (and then people ooh and ahh over your on-point setting descriptions as secretly cackle with glee)
#I wish I could do speech to text#cuz I get hand pain and sometimes have to take weeks-long writing breaks#but every speech to text program either a) is $60+/year subscription;#b) doesn't work very well;#or c) unnecessarily wants access to all your personal info like location/contacts and refuses to work unless you give the program permissio#an unexpected ask#cheeto my beloved
8 notes
·
View notes
Text
it should be illegal for companies to have such a widespread issue and not fix it
#brina is being forced to upgrade her ipad bc its cheaper than fixing it w the trade in credit#and yes thays my drawing program and writing program i do axrually need that fucker the programs arent on other platforms#this is actually the worst companies should be sued more#tbd#the only fix options i was given was spend $600 on repairing the charging port#or pay $400 gor the ‘magic k/eyboard’#its $600 to full out replace it w trade in cred#fuck ap/ple fuck ap/ple f u c k a p p l e#if these programs werent locked to this bullshit device id buy a samsung#i have to go do that now so#ik i have like messages and stuff i havent seen them yet im sorry i gotta go fic this shir
4 notes
·
View notes
Text
@nineliabilityrisk liked for a short starter for Birdie.
The rabbit was hovering just in the corner of their sight, grinning mask tipped this way, then that. "Want to play a game? I promise it'll be fun."
#—— ✧ rp »#☆ —— verse ↳ g l i t c h t r a p.#nineliabilityrisk#((okay full transparency: this is my first time actually writing glitch and he tends to be very low muse so bear with me kfhsdajfsd))#((he's also not literally william just a program that acts like him))#—— ✧ queue »
4 notes
·
View notes
Text
Note to self: Sfinae and Raii could work surprisingly well as a pair of names for characters in a fantasy setting (siblings, perhaps?) as long as you ignore the fact that they happen to originate from C++ programming terminology
1 note
·
View note
Text
Writing Your First C Program: A Beginner’s Guide | Removeload
Whether you are an aspiring developer or a student, this guide will help you get started with confidence. Writing your first C program Removeload is simple if you follow the right approach.
0 notes
Text
Prompt your website visitors to take action with clear CTAs. Whether it’s “Shop Now,” “Book a Free Call,” or “Download Your Guide,” CTAs are your website’s way of saying, “Hey, do this!”
#and Facebook / YouTube JUSTUSarts Educational Entertainment#Boys and Girls Clubs#BoysANDGirls Reading#DRUM TALK!#family literacy#great activities for National Reading Month#or Storyteller. All Ages Welcomed - Summer Story Reading Program. We love Parent Involvement “Reply Here”. Sign Them Up - then let’s plan “c#Parent Involvement#Song writer#storytelling#Tejas Storytellers#writing and sharing rhythms on the African drum EZ Booking for National Poetry Month. Workshop -InPerson • Webinars Online • Sign Up Your as
0 notes
Text
.
#womp womp#my prof gave me a C+ on my paper bc she said it was well written but not actually a literature review like i missed the mark on what the#kind of paper it was supposed to be hahaha oh no oh dear i have to write another literature review for this class fuck lmao#i do blame it on the fact that the paper is so open ended there no prompt or topic just from our readings and yeah i guess i got the#instructions wrong like ive never written a literature review before#and apparently i didnt understand it hahahaha oh dear i still have a B in the class which is the lowest grade i can get for fin aid lol#it's only week 3 of 7 it's ok it's fine lmao oh man#silly required program course#im surprised she graded it so fast i turned it in yesterday damn ok#just grad school things#maybe i should set up an appointment so she can explain to me better what a literature review is like ok i did research it but apparently#missed some things but dunno what things specifically i left out or something to make my wonderful well written paper#not actually a literature review and therefore not getting the grade i wanted bc i didnt do the paper type correctly#alas!!!!!!!!#i got on my laptop to apply to exciting job opportunites and checked my school email first#drats#well at least a C+ is almost a B#i got a D on my first paper in my first class of grad school bc i didnt understand the instructions then either and ended up getting an A-#for the total overall class grade so everything can still be ok and that was a required class toooooo#ooooof
0 notes
Text
i have this open in a doc in the next tab as im trying to finish my senior review prep and its the only thing keeping me going.
4 notes
·
View notes