#do my c++ homework
Explore tagged Tumblr posts
yourstrulynobody · 3 days ago
Text
(TW: eyestrain(?))
[FAKE EAPS EP] "ECLIPSE'S HORRIBLE NIGHTMARE! In VRChat"
(Imagine making a whole art piece just to yap about a theory of yours—oh wait. /silly)
Tumblr media Tumblr media
I wonder if Eclipse knows the amount of danger he accidentally brought his kids in? Thats all Ive been thinking since yesterday's EAPS ep :P
(yapping + theory under cut)
Like, originally when Afton mentioned about distracting Eclipse using his kids (in this ep), I thought: "Oh theyre ghost kids. They can easily get out if he captures them—like Andrew can teach the other two to phase through walls or smth", but since their recent upgrade to having physical bodies... I think Eclipse unknowingly brought them into danger since now it'll be a difficulty for them to escape Afton with that in mind, wouldnt it be??
I honestly doubt that his kids would be fooled easy by anything Afton directly tries... so heres when this theory of mine comes into place.
Maybe smth like Puppetmaster's kidnapping of Charlie (in this ep) would happen? Like the Mimic (based off the theory earlier) would change to have Eclipse's form and lure the kids out. Im sure Andy would be excited since he wants to go out, but Jake and Andrew would be reluctant yet follow him anyway (or convince him to stay).
I honestly dunno man.
120 notes · View notes
cutter-kirby · 2 months ago
Text
Tumblr media Tumblr media Tumblr media
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
71 notes · View notes
mismatched-ideas · 3 months ago
Text
Tumblr media
As per a conversation with my friend about Sakamoto just leaving 15 year old shin, apparently without telling him ANYTHING.
96 notes · View notes
aureumms · 1 month ago
Text
Tumblr media
once again I have been given permission to be delusional so here we go again!
CHARTS FIRST—THEN EXPLANATION
Tumblr media Tumblr media
This is it
Disclaimer: if you don’t headcanon cPunz and cPurpled to have had a sibling-like relationship then this won’t make sense and that’s okay. Another thing, if you don’t see cPurpled to be manipulated by cQuackity, that is alright and your personal opinion : )
Purpled and Tommy are both in the roles of children who have had difficult decisions placed upon them by their manipulators/society in general, and their choices are seen as good or bad depending on who is viewing them.
They have had important things ripped permanently away from them, also by said manipulators (Dream basically influencing it), Purpled’s important thing being his UFO, Tommy’s important thing being L’manberg. Funny enough, both of these things were considered to be their home/place of refuge, and Both were blown up unexpectedly.
Both of them were in places they were brought to by their manipulators and wanted to get away from, and did! Tommy escaped his exile that he was brought to by Dream, and Purpled left Las Nevadas that Quackity wanted him to join. Circumstances are different but if I squint I can make it a parallel.
Quackity and Dream were the manipulators in this situation. They targeted the vulnerability and the insecurities of their victims, and managed to break them down.
They attempted, to varying degrees, to play some nice game with their victims. Both wanted their victims to depend on them.
Both of their victims eventually had an upper hand moment for revenge.
Both of the victims wanted to kill their manipulators at some point.
Both of their victims had plans to close the bad chapters in their lives, ONLY TO BE KILLED BECAUSE OF IT.
Punz and Wilbur played older sibling figures who harbored dislike towards the victim’s manipulators at SOME point in time, or all of the time. While this is my weakest parallel, it is still a parallel I need to make in order to complete the triangle.
Both Punz and Wilbur played older sibling figures who tried to convince the younger brother figures to do things—to be on THEIR side. Purpled and Tommy had contrasting feelings to their older sibling figures, but I like to think Purpled used to have a positive relationship with Punz, just like Tommy used to have with Wilbur. Both the younger sibling figures have Neutral/Negative feelings towards the older sibling figures now.
Both Punz and Wilbur were in positions where they were on opposing sides to their younger brother figures, whether it was known or Not. Punz’s instance being his loyalty to the Eggpire while Purpled betrayed it at the red banquet (despite Punz not being in attendance), and Wilbur’s instance being his betrayal to L’manberg, Tommy’s home and greatest ambition.
That’s all I got : )
29 notes · View notes
spaciebabie · 3 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
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
24 notes · View notes
saltedcaramelchaos · 5 months ago
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-?
19 notes · View notes
kedsandtubesocks · 1 month ago
Text
Happy Conclave/Pope draft day ✨
7 notes · View notes
sundial-bee-scribbles · 2 years ago
Text
Tumblr media
126 notes · View notes
goodplace-janet · 5 months ago
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.
7 notes · View notes
spark-hearts2 · 4 months ago
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);
}
5 notes · View notes
diltonsstrangescience · 9 months ago
Text
I found this on one of @jhsharman’s posts:
Tumblr media Tumblr media
(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.)
8 notes · View notes
rose-lalondde · 1 year ago
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)
13 notes · View notes
dooblez · 2 years ago
Text
Tumblr media
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
17 notes · View notes
lesbian-thespian-paladin · 2 years ago
Text
anyone else so so afraid all the time for no reason? Just me?
7 notes · View notes
kissingwookiees · 2 years ago
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.
5 notes · View notes
yourlocalsonia2 · 1 year ago
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)
2 notes · View notes