Yall know what happens after you get admitted?
I figured there would be some automated emails or processes but nah, nothing.
No new holds, no emails. How long did it take you to get the ball rolling?
I figured there would be some automated emails or processes but nah, nothing.
No new holds, no emails. How long did it take you to get the ball rolling?
So tldr I actually can't afford to go to a suny and the offers are still up on the cuny portal so I'm thinking pull out of the suny and accept the offer to go to medgar evers.
edit: nevermind, all the math is wrong. But hey I've heard ebill is in 10 days so that's nice ig.
So the total is 36,530 dollars. Subtract 7,070 for tuition, because that's covered by the excelsior scholarship, so we're left with 29,460 dollars.
Total aid granted by pell grant, tap, suny tuition credit (idk what that is), subsidized and unsubsidized loans is 12,866.52 dollars. Subtract that from 29,460 and we're left with 16593.48 dollars.
Personal expenses isn't an actual charge so we take that away and we're left with 14355.48 dollars. Finally, books and supplies is another fake charge so when we subtract that, we're left with 12855.48 dollars that I would need to borrow.
And once we shave off that meal plan next year, we'd have 4855.48 which I could easily work off and have my parents pitch in.
I took one semester of chemistry before dropping it, because I already had earth science regents. Idk why my guidance counselor put that on my schedule. And I've never had Physics.
I'm short 8,000 dollars.
I got a scholarship, but it doesn't cover room and board. It's a last dollar thing, so it just pays for whatever you're left with after all the aid and scholarships.
I got 12k from fafsa.
I have a job this summer. $17.50 after tax, 25 hours a week, 6 weeks, that's like $2,400 after tax.
see bottom for edit, I fixed the issues
I know it's really really basic but I legit got this thing a day ago, so I feel like that's fair.
So basically it's just something to monitor watering plants. I saw a girl on tiktok basically make a plant tamogachi and I thought that was really cool.
The water sensor corrodes easily so every 10 seconds, it's goes on high power, runs the rest of the code, and then goes back to low power. Until 10 seconds later.
The problem I'm running into is that it kinda ramps up. it take a long time to get to the actual current water moisture. So unless you were drowning this plant, it would tick up very slowly.
when it reaches certain values, the led is supposed to change colors. So it's red (dry asf), yellow (warning), green (okay), and blue (lots and lots of water).
here's the code, once again it's very simple.
Also, regarding the title. Technically the traffic light was my first project, because I was following the freecodecamp 10 hour guide but I kinda fell off at hour 5.
Eventually, in the future, I'd like to make a bipedal autonomous robot, that's like 2 or 3 feet tall. So I gotta start somewhere.
for rule 2: Elegoo 2560 mega starter kit.
edit: I fixed the code and the led. I switched to 4 leds instead of a singular rgb led, then I added stuff to the if and else if statements to explicitly tell the leds that aren't supposed to be on to turn off. Now it switches as intended. Thank you for the help everyone.
new code:
int agua = A0;
int power = 9;
int red = 2;
int green = 3;
int blue = 4;
int yellow = 5;
int x = analogRead(agua);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(agua, INPUT);
pinMode(power, OUTPUT);
pinMode(red, OUTPUT);
pinMode(green, OUTPUT);
pinMode(blue, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(power, LOW);
delay (10000);
digitalWrite (power, HIGH);
delay(100);
x = analogRead(agua);
Serial.println(x);
if (x >= 180) {
digitalWrite(green, LOW);
digitalWrite(red, LOW);
digitalWrite(yellow, LOW);
digitalWrite(blue, LOW);
delay(1000);
digitalWrite (blue, HIGH);
} else if (x <= 140) {
digitalWrite(blue, LOW);
digitalWrite(yellow, LOW);
digitalWrite(green, LOW);
digitalWrite(red, LOW);
delay(1000);
digitalWrite (red, HIGH);
} else if (x >= 150 & x <= 179) {
digitalWrite(green, LOW);
digitalWrite(blue, LOW);
digitalWrite(yellow, LOW);
digitalWrite(red, LOW);
delay(1000);
digitalWrite (green, HIGH);
} else if (x >= 141 & x <= 149) {
digitalWrite(yellow, LOW);
digitalWrite(blue, LOW);
digitalWrite(red, LOW);
digitalWrite(green, LOW);
delay (1000);
digitalWrite(yellow, HIGH);
}
}
Old code:
int agua = A0;
int power = 9;
int red = 2;
int green = 3;
int blue = 4;
int x = analogRead(agua);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(agua, INPUT);
pinMode(power, OUTPUT);
pinMode(red, OUTPUT);
pinMode(green, OUTPUT);
pinMode(blue, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(power, LOW);
delay (10000);
digitalWrite (power, HIGH);
analogRead(agua);
Serial.println(analogRead(agua));
if (x >= 600) {
digitalWrite (blue, HIGH);
} else if (x < 410) {
digitalWrite (red, HIGH);
} else if (x > 430) {
digitalWrite (green, HIGH);
} else if (x > 410 & x < 430) {
digitalWrite(red, 255);
digitalWrite(green, 255);
digitalWrite(blue, 0);}
}
this is the trend: https://www.tiktok.com/@0mmichu/video/7655242453183630600 or https://www.tiktok.com/@valenbutt/video/7654667697015344414
Shion is going to ride her motorcycle around his head.
So good news: I got Excelsior! Bad news: I just found it it doesn't cover room and board...
12k in aid, really 10k because I'm not taking an unsubsidized loan in my life, which is obviously enough to cover dorms.
Which leaves 8,000 dollars for food... At most I'll make 4k if I'm actually working 40 hours a week. EDIT: also I meant 40 hours a week this summer. Because there's SYEP going on for 6 weeks and I'm trying to find another job right now.
Not including textbooks, or a laptop, or fees, or even a notebook.
Like bro I'm fine eating salt water soup whyyyy would they do this
I really am stupid :(
I'm kinda strapped for cash right now and I was wondering maybe I should just start applying to stores in mass. It's basically the only experience I have, and I'm feeling a lot of dread at the idea of working in a Walgreens again.
I was wondering how you guys enjoy your jobs, maybe I just need to man up. No pain no gain.
I am majoring in Computer Engineering, which is 50% electrical engineering and 50% computer science.
Are there any (realistic) things you would want to see in an irl bangboo? any features?
A bangboo would need to move in it's environment autonomously. So it would need to understand the distance from an object, so it would need an ultra-sonic sensor. It would also need an IMU sensor which just tells the computer its position in space. Is it moving up, down, left or right?
Bangboo would also need to both identify and track humans faces and recognize objects, so computer vision with a 5 megapixel camera. You would want it looking at you when you speak to it. Also needs good microphones for that.
While I don't have the skill to make a bangboo have an artificial flexible spin to look up and down, I can make the head go left and right. The head will be divided from the body in two pieces. They would be a servo or a motor with a turn radius limit coded in so it could look elsewhere without having to move its whole body.
The legs show in zzz would kinda be impossible to get working, so I'm thinking instead of a triangle it would be more like a flared cylinder? meaning the base of the feet would be more wide than pointy, like a bucket shape? It would lift one leg after another like a pendulum, but I'm not actually sure how it would move in a direction other than straight... I'll have to figure that out.
The walking can be trained millions of times in simulation in something like nvidia's isaac lab. That's how all those robot dogs or humanoid robots are able to balance on balls or do back flips. They were trained.
The ears are obviously just antennas for something. FM radio? Wifi? Not sure.
The face is just a curved lcd screen, I can make animations for different states easily.
Finally, the AI. I've seen a few videos using local LLMs but they're quick slow, if you just wanted an AI assistant they're okay, but I don't think if I gave control of the movement to the AIs they would be any good. Then there's claude, gemini or chat gpt but those as expensive as hell and I'm completely broke. Idk if I'm allowed to link videos, but look up art of the problem or brenpoly, that's kinda what I want to do.
The llms are also necessary for it to do what it tells you and make long term observations about you or the environment based on it's sensors and camera.
The entire thing would run on a raspberry pi and an nvidia jetson nano. Raspberry pi also makes an ai board attachment for the og pi so that could be an option too.
I want to make something alive. Fighting ethereals or running stores autonomously may not be realistic, but making my own little pet? Could be possible.
Any thoughts? Seems fine. I wish maybe the chem lab was on thursday so so tuesday would be fully free. I'll see if I can talk to my advisor but it's no biggie.
I don't know how I went 18 years only wearing converse. I think I'm going to buy a pair of gripfasts next. Look at that toe cap man.
​
...
​
Anyways I had these shoes for 6 months, they're pretty cool.
So basically the router just disconnects. No ethernet, no wifi, and then it comes back after a few minutes.
I thought maybe it's a firmware problem, but nah you can't actually update your own firmware.
It is kinda old, got it in 2020 so I guess it's just showing it's age? Does anyone else have experience with these mini DCs? Is it a router problem or a service problem?
It's really becoming a problem, I was just banned from Overwatch for 6 hours because I DC'd from a match.
What's the deal with this? Thoughts?
From the Christmas comic. Two biological hands??
In my freshman year of high school, I was recommended a video on youtube, the Junker Queen cinematic. I knew nothing about overwatch, I didn't even know No Mercy was about Overwatch, so from that video alone to the entire play overwatch, really changed who I was.
Seeing all these cinematics, these heroes, the music, everything was so beautiful. It was like meeting Jesus Christ for the first time. This was basically my first ever online multiplayer game.
I started playing on October 5th 2022, because servers were full the on the 4th, on an old PS4. Despite all the controversies, I played every single day, for hours. This is where the cracks started to show.
Instead of doing my homework or studying, I would just play Overwatch. I didn't really care because as long as I got to be a hero, what mattered?
I didn't really have friends, and who needed them when you had Overwatch? I started looking for other people to play with, so if I couldn't play with you, I simply would not bother interacting with you. I also (still) struggle socially, and many of the tutorials I saw on youtube were all about common interest, and there was nothing I loved in the world more than Overwatch. This made finding friends hard because at the end of the day, Overwatch wasn't exactly popular among ANY age group at the time.
There was a kid in my health class who did play, so we exchanged contact. But immediately I realized he wasn't really an OW player, since he literally only had like 7 hours in the past 3 seasons. Then weeks later, this guy invites me to play soccer at a park. I turned him down and unironically said I'd rather play overwatch. Not because of distance, or time, or my parents. But because this game was more important than anything in my life.
In fact, that winter it was -10 degrees and a borderline blizzard at 8:00pm. My headphones broke, and I couldn't play overwatch without headphones, so instead of doing literally anything else, I made a 15 minute trek to five below just for headphones for overwatch.
I didn't join any clubs because it's a waste of time, the grind to get out of bronze never stopped. In the summer, I just played Overwatch morning to night day in and day out.
Today, I play Overwatch on a computer. Why? Because Overwatch players said PC was the correct platform, that consoles are nothing but shitters. Not because I had any interest in PC games or mnk, but because it was the right thing to do as an OW player.
I don't regret it, because MNK IS superior to a controller, and building PCs is very fun (I've done 3) but I didn't do it for the right reasons initially.
Even when I was playing Valorant for 6 months because the shitty dell I bought couldn't run overwatch, all I could think about was overwatch.
throughout highschool I continue to get no friends and no bitches, joined no clubs and spent all my allowance on kiriko skins. When I had summer jobs, it was just food and skins.
Literally wrote my college essay about Overwatch.
I thought what was missing from my life was someone who played overwatch. I got what I wanted in my senior year, a girl who occasionally played Overwatch, who only got insanely addicted to it because of me (for context, she literally finished the battle pass BEFORE mid season this season). But beyond her obsession with wuyang's abs, we didn't really vibe as people. We liked the same things, but whenever we played together it was just silence. I thought this was what I wanted. Someone like me. Idk.
1,395 hours. Sometimes I like to imagine me life without overwatch, if I spent 1,395 hanging out with friends or 1,395 hours in the gym or 1,395 hours learning how to make robots and other cool tech stuff. I have wasted 4 years of my life because I'm a fucking idiot.
And after this I'm just going to get back on OW because I have nothing better to do with my life.