#Do My C++ Homework
Explore tagged Tumblr posts
Text







C++ Homework Help
Our team of experienced C++ professionals has completed this sample C++ homework with great proficiency. If you have any doubts or issues with this assignment, please feel free to reach out. For additional help with your C++ homework, check out our website C++ Homework Help, where our expert C++ homework specialists are available to assist you.
#C++ Homework Help#Online C++ Homework Help#Do My C++ Homework#C++ Homework#Homework Help#Help#Homework#C++#CPP#Education#Student#Study#Study Tips
0 notes
Text
As per a conversation with my friend about Sakamoto just leaving 15 year old shin, apparently without telling him ANYTHING.
#sakamoto days#shin asakura#taro sakamoto#my edit#i should be doing homework#C i know you sometimes find my posts on here and if so hello#yes i use lur conversations for content
92 notes
·
View notes
Text



coliblings hurt me. I’m returning to my roots (being compelled to make a random lyric comic) but this time I actually committed. song is I can’t fix you which I discovered via isat animatic
#kirbart#detective beebo#nina c.#eugene c.#also curse you eugene for your color being yellow. it makes it hard to see#and nina’s is a purple which is Barely different from the House’s#but hey at least they’re complementary#this was fun. but now I didn’t do my homework today. drat!#funnily enough the song that got me into lyric comics as a young boy was also a fnaf fan song (with an undertale comic ofc)#some things never change
41 notes
·
View notes
Text
something that has been happening 2 me frequently for like years now and i have no clue why b/c irl i look like the most normal person on this earth
#spacie scribbles#CAN I COMPLAIN FOR A SEC#WHY DOES THIS HAPPEN#THERES NOTHING SPECIAL ABOUT ME I LITERALLY JUST COME TO CLASS AND GO HOME#WHATS GOING ON????#WHY DO YOU LOOK LIKE U WANT TO SHIT YOURSELF????#is this one of those things were i give off a ''mysterious'' aura b/c i dont talk. is that what it is.#i have been told b4 this is the case. i hate to break the fantasy#but im actually like. a normal guy who does their homework whn they go home. im just like. a little autistic also.#baffling being on the receiving end of this treatment (i usually get nervous around and avoid ppl b/c i have social anxiety)#this also ONLY happens to me when someone has a crush on me#which like#kind of lowkey wish wouldnt happen beecuz it gets in the way of me making friendships/conversating#(but also kind of boosts my ego i wont lie. it happens often which. is once again strange to me b/c i dont think im particularly attractive#(i mean i know im physically ''beautiful.'' i just dont know how you can crush on me when u dont know me)#it triggers my ptsd and makes me think i did something wrong idk 😭#you know how it is w/the disorder than makes u heinously aware of any and all minute facial details and body language#we gotta fix that❗❗#crush be gone❗❗#sprays u#most of the time i dont wanna be friends w/ppl but i would just like to have a conversation w/out the other person being So Scared
24 notes
·
View notes
Text
Didn’t lock in on homework but I DID get it done and that’s what matters right
it’s probably fine that I spent like 5 hours halfway editing homework and halfway wasting time right-
completely normal and fine that my whole afternoon feels like it was wasted even though I did the thing I needed to, I just didn’t get free time? right-?
#i. should probably try adhd medication lol-#missed a family thing to work on homework but that did give me time to make it Really Good which is nice c:#it did take up. 7 hours of my day though. a solid 3 of which were probably watching youtube/doing whatever in between various bits of my#assignment. this is fine
19 notes
·
View notes
Text
#my audio lol#shitpost#vocaloid#vflower#flower vocaloid#oliver vocaloid#yeah lets just leave it at that.#happy 1 year anniversary to this fucking image that crashed my entire computer for some reason when i tried editing it for the first time??#the audio i just made like rn b/c i thought it would be funny 😭 and i reallyyyy do not want to do this homework
126 notes
·
View notes
Text
[Description: a 45-second silent timelapse video of the blogger sorting a pile of papers. /end ID]
admittedly this pile was a low-priority task, but i was struggling to focus on anything else all weekend so at least it's better than nothing.
posting this mostly as a reminder to self of the importance of making progress on tomorrow's goals.
#a) finish homework#b) make some appointments#c) start one of my incomplete papers!!#before trail run group in the evening#that's... too many things.#but we're gonna do our best#and celebrate whatever wins we can get#video#face tag#talk tag#timelapse
7 notes
·
View notes
Text
I AM SO GOOD AT CIRCUIT BUILDING AND PROGRAMMING RAAAAA
C++ script under cut :3
int UpDown; //value for the Y direction of controller
int LeftRight; //value for the x direction of controller
int LR_neutral; //value for the 0 position in the y direction of controller
int UD_neutral; //value for the 0 position in the x direction of controller
int Bprev; //value for button edge detection
int Bcurr; //value for button edge detection
int R;
int Y;
int G;
int B;
void setup() {
Serial.begin(9600); //begin communication
pinMode(A2, INPUT); //button press detection
pinMode(4, OUTPUT); //set pin 4 to power the Red LED
pinMode(5, OUTPUT); //set pin 5 to power the Yellow LED
pinMode(6, OUTPUT); //set pin 6 to power the Blue LED
pinMode(7, OUTPUT); //set pin 7 to power the Green LED
LR_neutral = analogRead(A1); //set zero position of controller
UD_neutral = analogRead(A0); //set zero position of controller
//WARNING!!! YOU CAN NOT TOUCH CONTROLER WHEN INITALIZATION HAPPENS!!!! WILL MESS CONTROLLER UP
}
void loop() {
LeftRight = analogRead(A0); //read X position of controller
UpDown = analogRead(A1); //read y position of controller
Bprev = Bcurr; //set current button state to previous state
Bcurr = analogRead(A2); //set current button state equal to actual button state
if ((Bprev == 0) && (Bcurr > 0)){
//turns all LED on
digitalWrite(4,HIGH);
digitalWrite(5,HIGH);
digitalWrite(6,HIGH);
digitalWrite (7,HIGH);
delay(100); //wait
//turns all LED off
digitalWrite (4,LOW);
digitalWrite (5,LOW);
digitalWrite (6,LOW);
digitalWrite (7,LOW);
}
if (UpDown >= UD_neutral) { // checks if controller is up
B = 0; //if up turns blue LED off
R = map(UpDown, UD_neutral,1023,0,255); //if up turns red LED on
}
else {
R = 0; //if down turns red LED off
B = map(UpDown, UD_neutral,0,0,255); //if down turns blue LED on
}
if (LeftRight >= LR_neutral) { // checks if controller is right
G = 0; //if right turns green LED off
Y = map(LeftRight, LR_neutral, 1023,0,255); //if right turns yellow LED on
}
else {
Y = 0; //if left turns yellow off
G = map(LeftRight, LR_neutral, 0,0,255); //if left turns green on
}
//writes values to LEDs
analogWrite(4,R);
analogWrite(5,Y);
analogWrite(6,B);
analogWrite (7,G);
}
#Do you want to learn C++#because I know C++#people who know what they are doing know that this code has several issues tho :/#but it works!!!#And I'll take that#programing#circuit diagram#curcuits#prototype circuit#arduino#I'M GONNA MAKE A ROBOT AND NO ONE CAN STOP ME#yes this is unironically my homework#I love college!
5 notes
·
View notes
Text
I found this on one of @jhsharman’s posts:


(Sorry if it’s rude to take it but I am giving credit.)
I think the original post was one of their many (very cool) side-by-side comparisons of things changed in reprints. But I want to put this here in isolation.
I don’t know if this is consistently canon, or one of those traits that changes over the decades, but I consider it to be true. Jughead is an above-average student.
Sure he’s weird, but he’s not disruptive. Sure he’s lazy, but he’s also willing to put effort into things. He’s generally very respectful and nice to everyone he interacts with. Jughead rebels against societal norms and expectations, sure, but he almost never breaks actual rules. He’s a good student.
He might sleep in class sometimes, but he always learns the material one way or another. And he may not be an overachiever like Dilly, but in the pursuit of doing only what he’s required to and not a single thing more, he does a good job.
He doesn’t worry about school, but he still does well. You can have it both ways. (Somehow.)
#ironically I’m writing this post instead of doing my homework#archie comics#jughead jones#this is why I headcanon dilton to be so jealous#if jug was a C average student then dilly could reassure himself with his own superiority#but if jug is making mostly As AND *isn’t* full of anxiety then clearly dilton must be doing something wrong
8 notes
·
View notes
Text
pro tip: if you think you have adhd then don't start a master's program before you even get a diagnosis (also you need a stronger prescription, you have astigmatism, and reading glasses aren't gonna cut it)
#i can handle one class just fine but 2 classes??? im killing myself#im working too so its like i never have time for myself and its just a neverending well of assignments and work plus i hate the schedule#why is everything due at 10:59 and why is it due in the middle of the week but i have to come back the next 2 days and write responses#one of my classes will trade out a disucssion for the week with an assignment thats due at the end of the week and i like that sm better#the other class makes use do a discussion and an assignment in the same week#and usually they're all due at the same time so i go to work and then go home do my homework and then do more homework on the weekend#then go back to work do you understand my problem#anyway my mom casually confirmed that i have astigmatism recently which ???#but my eyesight is fine but driving in the dark is hell and its not b/c of the dark!#any kind of bright light blinds me like it could be a sunny day and i won't be seeing shit for that entire drive omg#just realized that this might be the cause of an increase in headaches wait...#ok back on track: adhd consultation (maybe) in a month and a half!#i don't have a therapist so im hoping my doctor can help? or at least refer me to somebody that can help b/c looking is hard omg#where the therapists at omg#moon posts#long one today because i am procrastinating so i can give up <3
13 notes
·
View notes
Text

little man i drew instea.d of paying attention to school
if you want to see the little BEASTE being a little BUG MAN you can find the og art here :3
#i keep not doing school stuff because of these two#i have homework due tonight but ooOoOoOoooo more old man yaoi content/j#anyways little beetle scarab !!!#he is a japanese rhinoceros beetle !!!#and he’s very cute !!!! <3#i have more but they’re not as good so they stay in my notebook#my art#scarab#fionna and cake#at:f&c
17 notes
·
View notes
Text
anyone else so so afraid all the time for no reason? Just me?
#sitting here trying to do homework but body has decided that we are actually fighting for our life#not helpful!#just feeling like a fuckup for not being able to handle the basic elements of adult life#brain is like you can a.) socialize b.) do schoolwork c.) eat or d.) have a clean house#but certainly not all of them at once and also if you don't do them all I will make you feel physical pain about it#personal#just venting#ugh ok back to white knuckling my way through the rules of civil procedure
7 notes
·
View notes
Text
i generally believed most people possessed average reading comprehension skills and media literacy... just like base level stuff... but actually the more i talk to regular people (not tumblrinas who only think about blorbos and the implications) about pieces of media the more apparent it becomes that people just dont understand how storytelling actually... operates... like writing mechanics and literary devices. actually a good majority should not have passed 9th grade english maybe.
#and im saying this as someone who got a C+ in 9th grade english#bc i didnt do my homework#but my class participation was above and beyond and i showed a outward comprehension for the work#so they stuck me in honors afterwards hoping the challenge would make me do my homework#but it didnt...#anyways what im saying is... SOME PEOPLE JUST DID THE HOMEWORK
5 notes
·
View notes
Text
Tbh I would have such a better time in school if I wasn't forced to take a spanish class that erased my study period (i used to be a A's and B student but now I have 3 c's, 2 b's and only 1 A)
#(Says a half Mexican person)#And my dad wonders why take a long time getting homework done#IT'S BECAUSE I DON'T HAVE TIME TO DO IT AT SCHOOL#SURE IT COULD HELP IN THE FUTURE BUT LET ME DO SOMETHING I WANT AND I COULD TAKE CLASSES ONLINE OR SOME SHIT#AND IF I TRY TO TELL HIM WHY I DON'T WANT TO TAKE IT HE'S LIKE “but it's part of your heritage” YES I KNOW#school is just stressing me the fuck out since i started to fail math (I'm not anymore tho. I have a c-)#sonia talks#Family shit
2 notes
·
View notes
Text
Novembmas, Day 29: Home / Fears/Worries !

Reunion group hug :DD <3 ! I could have messed it up more, this'll do.

The best way not to come uncoupled is to hold each other's wrist
And yeah, the tunnels still need to be inspected, even if you watched your brother disappear/you got eeby-deebied in those very tunnels
#i made myself sad drawing their eyes for the Fears/Worries one :C#i was thinking “los muchachos de los ojos tristes y traumatisados...” and started wanted to cry 😭#the lines around their hands is supposed to show how hard emmet is gripping ingo's wrist#i took great care in trying to make their team's as accurate as possible please be proud :<#it started off monday or yesterday night with “i'll just define the lines a bit more before doing my homework”#and before you know it i had done 5 of their pokemons#and would you look at that ! haxorus and archeops don't look half-bad !#they could be far worse#submas#submas november#novembmas#leene's art tag#blankshippers dni#post pla
5 notes
·
View notes
Text
I keep designing butch characters. I keep designing femme characters. But when will there be a butch and femme character in my HOUSE.
#🌸 minminrambles#head in hands. I am so bad at socializing. That’s the whole thing in one sentence. BAHAHAHA#Shaking. Trying to hold myself back from venting b/c it is a Me problem not an Anyone Else problem. I think.#I need to drive more. I need to take agency. I need to expand my social circle. I need to be an adult. I need a big kiss from woman. I need#Bah. Head in hands. Bah.#I am ok. I am ok I promise.#I shouldn’t be complaining about this since it is just. A problem of my own doing. Right? Yeah.#Ok ok no more venting for real this time I have homework
6 notes
·
View notes