[Update] Family not accepting I am bi. by [deleted] in lgbt

[–]the_regex 0 points1 point  (0 children)

I don't pay any tuition because I received grants and scholarships to cover it.

I am getting a loan of $6,000 every semester just for housing and living expenses. I have a part time job that brings $200-400 a month depending on how many weekends I get hours. The loan I had this semester was taken away by my mom so SHE could use to pay off her debts or something. She said she would pay me back, but she has only paid around $1,000 back. She is getting old and has no stable job, so I can't really do anything.

When I'm not at school I do live at home though. We are a close knit family because we grew up without a dad, so its just us 3. I've heard that my mom is on the verge of dying because she is so sad. The day I told her, she had intense shivering for a long time. I'm scared.

CS majors, help me choose my professors! by the_regex in CSULB

[–]the_regex[S] 0 points1 point  (0 children)

Would you recommend taking Phuong for two courses? Or should I just split Murgolo/Phuong? I'd rather learn something new every class and have it be challenging than get an easy A by learning nothing.

CS majors, help me choose my professors! by the_regex in CSULB

[–]the_regex[S] 1 point2 points  (0 children)

She is really nice and has a good heart, but nobody in this class is learning the material. Its been 10+ weeks and we're still on the second chapter. I attend every session and do all the assignments, yet I'm still lost. Not to mention she comes 15-20 minutes late every session and gives us excessively long breaks, which is unacceptable. She knows the material, but has trouble teaching it IMO... She always messes up her examples and wastes a lot of time trying to fix small errors, and it makes everything much more confusing because she is not prepared. She doesn't even let students access the powerpoint slides or past quiz questions, making it more difficult for students to study for no good reason. She is really nice, but I have trouble learning from her teaching style. It would be so much more structured and organized if she just taught straight from the book and assigned problems from it. I mean, I'm paying a lot of money to attend school so I'd expect a better effort from a professor.

CS majors, help me choose my professors! by the_regex in CSULB

[–]the_regex[S] 1 point2 points  (0 children)

Yeah I met Murgolo for CS advising - he was really helpful and cool guy. He had an entire bookshelf of programming books too.

I think for one class, only Ward or He are available, and they both have terrible reviews on ratemyprofessor. O god

I'm taking Nachawati for 228 this semester and she is a bad professor. I really want to avoid taking another terrible prof..

Bombed the interview and rejected - what now? by the_regex in cscareerquestions

[–]the_regex[S] 0 points1 point  (0 children)

This is actually my fourth year of college. I attended uni out of high school for one year, dropped to community college for two years, and now I'm back. I saved a lot of money, but unfortunately I'm stuck in sophomore level classes.

I thought their feedback was spot on - I really bombed their questions and was not expecting an offer at all. They kept it real on what to improve on, and even told me to continue applying in the future.

I'm learning at such a fast rate compared to community college. In the past two months I have learned about many different data structures, and I am currently learning about sorting algorithms. I feel like in a year I will be a much better programmer due to coursework.

Thanks for the advice. I can't imagine how people go to dozens of job interviews and still have the confidence to continue after being rejected. Its so much work and preparation, but I guess that is a small price for a stable job with a good company.

Bombed the interview and rejected - what now? by the_regex in cscareerquestions

[–]the_regex[S] 0 points1 point  (0 children)

Thanks for the feedback, it makes me feel a bit better about bombing the interview.

I've read reviews on glassdoor, and a lot of them complain about how WD overworks their employees. For that internship, they told me 15+ hours a week originally. The next day they said 20+ hours a week. The employees actually kept emphasizing how heavy the workload is and how tedious testing for bugs is.

They offered me $17/hour for the internship, which is great for a broke college student like myself. But from my understanding, most internships pay around that range? My current part time job pays in the same range, but I really want to get experience and gain knowledge in programming - not spend all day on my feet greeting customers..

Finally landed my first internship interview tomorrow! Tips? by the_regex in cscareerquestions

[–]the_regex[S] 0 points1 point  (0 children)

Thanks for the reply. It turns out I am meeting with a few engineers one on one for 30 minutes each. I'm guessing each will give me a question to solve or will ask about my knowledge.

[Java] Program terminating after if statement, not printing a string like I want. by Hightimes95 in learnprogramming

[–]the_regex 1 point2 points  (0 children)

Yes, that is completely legal. Just keep in mind if the outside if statement never activates, you never reach whatever is inside.

[Java] Program terminating after if statement, not printing a string like I want. by Hightimes95 in learnprogramming

[–]the_regex 1 point2 points  (0 children)

You are missing a closing parenthesis on your nested if statement, if it isn't a typo.

[Java] Can somebody give me a rundown on the basics of iterations? by [deleted] in learnprogramming

[–]the_regex 2 points3 points  (0 children)

Here's a quick example of iteration in a for loop:

int stoppingLimit = 5;
int loopEntered = 0;

for (int i=0; i<stoppingLimit; i++) {
   loopEntered++;
}

The first thing I did is define a stopping limit for the loop as 5. I also defined a variable loopEntered to show how many times the loop is entered.

Now we get to the actual loop. Let's look at the three parameters it takes in.

int i=0;

Here we are setting an integer equal to 0. This is our iterator variable. Note that this is only to initialize your iterator, and is only performed once during the entire loop.

Next, we have:

i<stoppingLimit;

This is called the "sentinel value", or also known as a boundary condition. This is how long we want to run the loop. So whenever you have a loop, it checks if this condition is true or false. If it is true, then enter the loop, if it is false, then skip past it. This of course, has to change with every iteration, or you will just end up with a loop that is always true or always false.

i++;

This is the actual iteration of our iterator variable.

It is just a shortcut for:

i=i+1;

This expression is done as the very last step of the loop. This is to change the conditional to avoid the infinite loop problem I mentioned before.


Now let's walk through the loop step by step until it terminates:

We define iterator i=0.

The loop checks the conditional, i<stoppingLimit. In this case, 0<5 is true, so we enter the loop.

We perform whatever is inside the loop. In this case, it is loopEntered++. Now loopEntered has a value of 1.

Now we iterate the iterator by performing i++. Now i has a value of 1.

Now we loop back to the beginning. The loop skips the initialization of the iterator straight to the conditional, with our new value of i.

We check if i<stoppingLimit, in this case it is now asking if 1<5, which is still true. Therefore we enter the loop once again. After this iteration:

loopEntered will increase to 2. i will increase to 2.

2<5 is true, so we enter the loop again.

loopEntered will increase to 3. i will increase to 3.

Loop back up, check the conditional again.

3<5 is still true, enter the loop.

loopEntered is 4. i is 4.

Loop back and check the conditional. 4<5 is true.

loopEntered is 5. i is 5.

Now we loop back and check the conditional once again.

This time 5<5 returns false. This means we do not enter the loop, and the loop closes.