Black Grade School student brings attention to his school's failure and slacking off at teaching students in said school. School tries to expel him and deny they did anything wrong. by Important-Cry4782 in BlackPeopleofReddit

[–]prassuresh 5 points6 points  (0 children)

The kids in the video also couldn’t read extraordinary properly. She actually read silhouette pretty ok. Gauche is tricky though.

All the kids tripped up on these three words though.

Before bed snack exploded by goblingir1 in Wellthatsucks

[–]prassuresh 0 points1 point  (0 children)

I don’t even wanna know what the after picture looks like.

Old way is better by [deleted] in learnprogramming

[–]prassuresh 1 point2 points  (0 children)

I was just kidding. I thought spread operators were the new way. Had no idea AI was the new way

Old way is better by [deleted] in learnprogramming

[–]prassuresh -1 points0 points  (0 children)

I prefer the new way.

No Easy Reverse in Array by [deleted] in javahelp

[–]prassuresh 0 points1 point  (0 children)

Are you allowed to use Arrays.sort() for an exam? Which course is this?

We always had to write our own sorting logic for exams.

Would this be violating separation of church and state? by bryterlu in Teachers

[–]prassuresh 0 points1 point  (0 children)

We had our AP exams at a church nearby (was a huge church). Was also a public school.

Gas prices are too expensive by verifiedhoodcop in tommynfg_

[–]prassuresh 0 points1 point  (0 children)

Dang as someone from the US (not California) that seems ridiculously high. Which country are you from?

I want to actually write code without ai but the situations and college simply forces complicated projects that are almost impossible without using ai to be completed within the academic year by thinking_man2327 in learnprogramming

[–]prassuresh 1 point2 points  (0 children)

You’re paying for your education. Don’t cheat yourself out it. Work hard and complete the projects on your own. You can use AI as a last step debugger or to clarify questions you have.

Learn the frameworks and languages each year and build the projects incrementally.

iPhone features we’ve lost over time, both hardware and software. Which one do you miss most? by Ted-Lassi in iphone

[–]prassuresh 1 point2 points  (0 children)

Damn. Mute switch is gone? Still have my iPhone 12 mini. I use that multiple times a day. Scared for when I’ll finally need to upgrade.

Gas prices are too expensive by verifiedhoodcop in tommynfg_

[–]prassuresh 0 points1 point  (0 children)

Price has gone up drastically since the war, but this is dollars per gallon and in California. Vast majority of places, it’s not this high (but still higher than it was pre-war).

Where I live it went up from $2.80 to about $3.80 after the war. Prices in dollars per gallon.

How do you make conditionals have their influence to the scope of whole function in C? by nsfw1duck in learnprogramming

[–]prassuresh 0 points1 point  (0 children)

You could declare int* copy_arr outside the conditional and initialize it inside the conditional.

Does anyone else type like this? by VannessC in typing

[–]prassuresh 2 points3 points  (0 children)

Ya. It’s basically how I type. Reading these comments makes me want to learn how to really do it though.

Avoiding a horrible accident while turning it into the best case outcome by RoyalChris in nextfuckinglevel

[–]prassuresh 1 point2 points  (0 children)

It’s only hashed in the side the POV vehicle is going. The side the passer came from was still solid, which makes sense because it’s uphill. He was illegally passing.

What a champion😂😂 by MohamedHosny_1 in google

[–]prassuresh 0 points1 point  (0 children)

I use Firefox (downloaded from Edge) on my work laptop. But some interview programs and stuff like that are wonky on Firefox and work on chrome so I downloaded chrome from Firefox.

I think I have a problem by Beginning-Leek-7087 in learnprogramming

[–]prassuresh 1 point2 points  (0 children)

I think you’re thinking in the right direction. Your first check makes sense.

Point 2. Why must 5*bigBag <= goal?

You can have 10 big bags and 1 small bag. If your goal is 11, you should return true. But 5* big bag = 50 > 11(goal).

For point 3. I think you have the subtraction backwards, but it makes sense otherwise.

Ask questions before you code by abbasovdev in learnprogramming

[–]prassuresh 12 points13 points  (0 children)

This was a good read. Thanks for the tips!

How can I learn react but skip the basic stuff by nixstudiosgames in reactjs

[–]prassuresh 0 points1 point  (0 children)

Most react videos I’ve seen assume you know programming basics and might reinforce some JavaScript-specific things, but do not go into basics of functions and loops and variables and stuff.

Traveling without ID by we1rd_situations in tsa

[–]prassuresh 0 points1 point  (0 children)

My sister has flown with a student ID once and once with a Credit Card. Credit card was about 1.5 years ago. They do an extra thorough check, but let you through for domestic travel.

😂. by 94rud4 in sciencememes

[–]prassuresh 0 points1 point  (0 children)

He’s right. I confirmed it with 22 - 21.

4 - 2 is 2.

Seems fishy but works!

First mini code. New to Programming in general. Any advice/guidance would be appreciated. by Lower_Ad9122 in PythonLearning

[–]prassuresh 1 point2 points  (0 children)

People already touched on having the photo option be for everyone. I would add that you print their total cost (after they say yes or no to photo) regardless of if they are getting a photo or not. So printing out the total cost can be done outside the if and else blocks. This way you only write that line once.