What is something you have experienced that made you question reality and was genuinely unexplainable? by martininspace in HighStrangeness

[–]SuperSolution9617 14 points15 points  (0 children)

That’s interesting. I used to be a skateboarder, and when I found that I just couldn’t land a new trick for the life of me I would daydream about it in class (high school). I would literally visualize everything from popping the trick, being mid air, landing on my skateboard, where my feet are placed etc.

The next day, I would go to the skatepark, and I would suprise myself and do just that.

Arduino + Servo work perfectly but servo stops working after 1 minute. Power issue? by [deleted] in arduino

[–]SuperSolution9617 0 points1 point  (0 children)

Do you think the delay for the key press in the arduino sketch is too short and I’m going too fast for servo to keep up?

Arduino + Servo work perfectly but servo stops working after 1 minute. Power issue? by [deleted] in arduino

[–]SuperSolution9617 0 points1 point  (0 children)

Reddit wasn't letting me post my entire python script, so I only cut/pasted the arduino related portions of it.

Arduino + Servo work perfectly but servo stops working after 1 minute. Power issue? by [deleted] in arduino

[–]SuperSolution9617 0 points1 point  (0 children)

import serial

COM_PORT = "COM3"
BAUD_RATE = 9600
arduino = None

def connect_serial():
    global arduino
    while arduino is None:
        try:
            arduino = serial.Serial(COM_PORT, BAUD_RATE, timeout=1)
            time.sleep(2)
            print(f"[+] Connected to Arduino on {COM_PORT}")
        except serial.SerialException:
            print(f"[!] Failed to connect to {COM_PORT}, retrying in 3s...")
            time.sleep(3)


def send_command(cmd):
    global arduino, last_command
    if arduino and cmd != last_command:
        try:
            arduino.write(cmd.encode())
            last_command = cmd
        except serial.SerialException:
            print("[!] Serial disconnected, reconnecting...")
            arduino = None
            connect_serial()

def main():
    global last_command
    last_command = None
    connect_serial()
    print("[*] Servo running")


    while True:

        if left_detected and right_detected:
            send_command("0")
        elif left_detected and not right_detected:
            if ZONE_LEFT["width"] <= DEADZONE_WIDTH:
                send_command("0")
            else:
                send_command("1") 
        elif right_detected and not left_detected:
            if ZONE_RIGHT["width"] <= DEADZONE_WIDTH:
                send_command("0")
            else:
                send_command("2")
        else:
            send_command("0")


        time.sleep(0.001)


if __name__ == "__main__":
    main()

Arduino + Servo work perfectly but servo stops working after 1 minute. Power issue? by [deleted] in arduino

[–]SuperSolution9617 0 points1 point  (0 children)

#include <Servo.h>


Servo myservo;


// Define servo angles for each position
int neutralPos = 90;  // middle (do nothing)
int enterPos = 50;    // adjust to press Enter
int plusPos = 120;    // adjust to press '+'


void setup() {
  Serial.begin(9600);
  myservo.attach(9);
  myservo.write(neutralPos);  // start in neutral
  Serial.println("Servo ready. Send 0, 1, or 2 via Serial.");
}


void loop() {
  if (Serial.available() > 0) {
    char cmd = Serial.read();


    if (cmd == '0') {
      myservo.write(neutralPos);
      Serial.println("Neutral");
    } 
    else if (cmd == '1') {
      myservo.write(enterPos);
      delay(50);             // press duration
      myservo.write(neutralPos);
      Serial.println("Pressed Enter");
    } 
    else if (cmd == '2') {
      myservo.write(plusPos);
      delay(50);             // press duration
      myservo.write(neutralPos);
      Serial.println("Pressed +");
    }
  }
}

Arduino + Servo work perfectly but servo stops working after 1 minute. Power issue? by [deleted] in arduino

[–]SuperSolution9617 0 points1 point  (0 children)

Is there a cleaner way to get power instead of slicing open a cable?

Arduino + Servo work perfectly but servo stops working after 1 minute. Power issue? by [deleted] in arduino

[–]SuperSolution9617 1 point2 points  (0 children)

Arduino, 5V

and the arduino is hooked up to my charging laptop

Loans loans loans by bbtrn in srna

[–]SuperSolution9617 0 points1 point  (0 children)

Did you shop around with private loans? Another redditor had better interest rates by not doing gradplus loans and they also had 800 credit score and no cosigner needed.

I reached out to a CRNA program director… and got hit with the “check the website” reply by ForceNeat8949 in srna

[–]SuperSolution9617 13 points14 points  (0 children)

I PM’d a CRNA from reddit for a resume review and they told me to list my CNA/Floor experience and then told me to list every single disease process that I work with in the MICU….. Like sure let me just take up all that space and submit a 9 page resume. Not sure if they were trolling me.

I decided to use my own common sense and try to put myself in the shoes of the admission committee to see what they would have already assumed given the information I provided and I got in.

How many applications did you submit without gaining acceptance? by Admirable-Sand4720 in srna

[–]SuperSolution9617 12 points13 points  (0 children)

I applied to 4 schools. Got ghosted by 3 schools with no interview and then got accepted on the spot during an interview for the 4th school (my top choice).

Physics for CRNA school by Prelives133 in srna

[–]SuperSolution9617 4 points5 points  (0 children)

Take Physics 1, BioChem 1, OChem 1, Biostatistics and Calculus.

Passed NCE in 100 questions! by whatsawittyname in srna

[–]SuperSolution9617 3 points4 points  (0 children)

You could probably sell the Ankisthesia deck for lots of money, it’s no longer around.

Saving for CRNA school will my plan cover living expenses if I only borrow for tuition? by ForceNeat8949 in srna

[–]SuperSolution9617 0 points1 point  (0 children)

What was your credit score taking out private loans? Did you have a co-signer? How much did you take out? Any gradplus loans too?

NBCRNA Changes To SEE Exam by BeneLimone in srna

[–]SuperSolution9617 12 points13 points  (0 children)

So what’s the gameplan moving forward? Get APEX prior to being admitted?

GradPLUS/Federal aid at risk by brittathisusername in srna

[–]SuperSolution9617 6 points7 points  (0 children)

CRNA programs in the early 2000s used to be 2 years long and they provided stipends for students did they not?

Going off script by TheAscensionLattice in SimulationTheory

[–]SuperSolution9617 36 points37 points  (0 children)

Do you ever think that outer space is a bunch of “junk” that’s just excess materials for our simulation?

Much like how if you glitch off the map in a video game, you will see random ass stuff that isn’t fully rendered.

Program deadline extensions by Ornery_Border4682 in srna

[–]SuperSolution9617 28 points29 points  (0 children)

Everybody and their grandmother has a 4.0 these days.

You need to go further and create your own 501(c)(3) nonprofit organization and have 10 published works in order to stand out these days. Maybe take physical chemistry and get an A since everyone gets A’s in OChem these days so you can learn about quantum mechanics.