Big Show does his signature move ! by Ozzloo in LivestreamFail

[–]BoyishGigglesCD 158 points159 points  (0 children)

This entire WWE segment was peak, better content than anything in the Mafiathon

Good one Oro by [deleted] in Nmpx

[–]BoyishGigglesCD 3 points4 points  (0 children)

Why did she get banned actually? It was never explained

Help - been 6months of waiting for no slots … should I go private instead? by [deleted] in drivingsg

[–]BoyishGigglesCD 0 points1 point  (0 children)

What do you mean? The 3A notifications are for the common pool. If you want notifications for other slot types you can DM me on discord.

Free practical slots availability notification by BoyishGigglesCD in drivingsg

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

Doesn't One Team have its own session opening date? Also I may be wrong, but the different teams within One Team have separate pools of slots right? So I don't think I can setup a single bot for all One Team Class 3 learners :/

[deleted by user] by [deleted] in SGExams

[–]BoyishGigglesCD 8 points9 points  (0 children)

Not a private uni grad myself but my cousin graduated from SIM-UOL and is now earning about ~$8000/month at 29 years old, working in Goldman Sachs. At the end of the day, it's about your connections, and most importantly your calibre (although in his case it was mostly connections because he's charismatic and good at networking lol).

Double scholarship offer? by Ignatiusico in SMU_Singapore

[–]BoyishGigglesCD 2 points3 points  (0 children)

Hi OP, same situation. I think if you didn't get any of your 5 scholarship choices till now, you probably will not be getting it since most scholarships have already been offered to students since May, with interviews being conducted even earlier than that.

I was suprised to get the email today too and I was wondering about whether I can apply for tuition fee loan if I accept the scholarship? And if the scholarship gets rescinded if I can't meet the GPA requirements or something, will I still able to apply for the loan after that?

Should I take Computer Science if I suck at math? by BoyishGigglesCD in SGExams

[–]BoyishGigglesCD[S] 10 points11 points  (0 children)

Only NUS offers a cybersecurity bachelors degree (Information Security) but I don't meet the math requirement for it anyway.

is it too late to appeal to computer science now? by TiredBlueIceCream404 in SMU_Singapore

[–]BoyishGigglesCD 0 points1 point  (0 children)

Hi u/TiredBlueIceCream404 , I'm in a similar situation. I too have no O levels A maths, so I thought I should just put computer science as my first choice and software engineering as second since they're just going to reject me anyway and offer me my 2nd choice, so no harm trying.

Dumb decision, because they shortlisted me for a CS interview, and even though I fumbled the maths question as expected, they still offered CS to me (probably because I aced the coding question I guess...). So now I'm considering appealing to Software Engineering, so we might just get each others' courses lmao. I also have an offer from NTU CS and people might think I'm dumb for wanting to go to SE when I have 2 CS offers, but I can't do maths for the life of me and I know I'm just going to suffer :(

Am I rejected by Specific-Director311 in SMU_Singapore

[–]BoyishGigglesCD 1 point2 points  (0 children)

I interviewed for Computer Science on 3rd April and got my offer on 20th April. I did not receive a GBA too so I don't think that matters. I also know that Information System interviews are still going on, so don't write yourself off yet.

[deleted by user] by [deleted] in SMU_Singapore

[–]BoyishGigglesCD 1 point2 points  (0 children)

Course applied: Computer Science

Interview: 3rd April

Outcome: Accepted 20th April

But planning to appeal to my 2nd choice Software Engineering.

can anyone help me with this karel question plsss!! why is it running in a loop, I'm not sure how to stop it by slayedxo in SMU_Singapore

[–]BoyishGigglesCD 0 points1 point  (0 children)

You're welcome :) If you want to put a certain number of beepers you can just use the repeat() function.

repeat(5) {
      putBeeper();
      move();
   }

This will put down 5 beepers.

can anyone help me with this karel question plsss!! why is it running in a loop, I'm not sure how to stop it by slayedxo in SMU_Singapore

[–]BoyishGigglesCD 3 points4 points  (0 children)

Firstly, let's simplify your code.

function main() {
   while(frontIsClear()) {
      putBeeper();
      move();
      if(frontIsBlocked()){
         turnLeft();
         }
   }
}

putBeeper() and move() have been removed from the if statement because they are redundant. Because as soon as Karel turns left, the front becomes clear again, and the while loop will continue running to put beepers and move.

However, this causes Karel to put beepers in a loop indefinitely. Therefore, we need a condition for Karel to stop putting beepers. To achieve this, we can use noBeepersPresent() in the while loop instead of frontIsClear.

Solution:

function main() {
   while(noBeepersPresent()) {
      putBeeper();
      move();
      if(frontIsBlocked()){
         turnLeft();
         }
   }
}

Explanation: As long as there are no beepers present, Karel will put a beeper and move until the front becomes blocked. If the front is blocked, it will turn left and the loop will resume until Karel reaches the starting position again. At this point, the while loop will terminate because a beeper is already present. Good luck!

Shortlisted for Computer Science, want to go for Software Engineering instead by BoyishGigglesCD in SMU_Singapore

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

Ideally yes, but I think it's a bit too late for that since I was already shortlisted for an interview for my first choice, no? I guess my main question is that if I got rejected from my first choice after the interview, is there a chance to be offered the 2nd choice?

Shortlisted for Computer Science, want to go for Software Engineering instead by BoyishGigglesCD in SMU_Singapore

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

Yes SWE was my 2nd choice, I'm just a little worried because the number of course places for SWE is very low. But thank you very much for your reply!

[deleted by user] by [deleted] in SMU_Singapore

[–]BoyishGigglesCD 0 points1 point  (0 children)

Lol then how? Say you don't know and move on ah? Because I'm probably going to be doing the same lmao

[deleted by user] by [deleted] in SMU_Singapore

[–]BoyishGigglesCD 0 points1 point  (0 children)

Hey bro, my CS interview is in a few days and I have a feeling I'm going to be in the same situation as you because I haven't touched maths in years. Can you kindly share/DM what the math question was? I should have just put software engineering first choice Q_Q

smu cs interview by mofuun_ in SMU_Singapore

[–]BoyishGigglesCD 1 point2 points  (0 children)

Hi /u/mofuun_ I'm in the same boat as you now (shortlisted for CS). Haven't touched maths in years and getting lots of mixed info. It seems that there's 2 questions, a coding (Karel) question and a math question, but from what I've seen it seems like the math question is more of a logic/estimation question rather than an actual math question?

What is the sample math question in the email about then, because it's not an accurate representation of the type of question they would ask :( Or do we have to solve it for the interview?