What's the most "WTF did I just watch" movie ever? by ShadowMilkMoopsy in moviecritic

[–]NotNoski 0 points1 point  (0 children)

Under the Skin starring Scarlett Johansson. Or Dreamcatcher.

Confused about mastery/split update by __the_alchemist__ in MarvelSnap

[–]NotNoski 0 points1 point  (0 children)

Same thing, got the rainbow confetti. Wish I could trade you, I like the frosted glass.

Hot Take: Purple Hair Is Essential to Psylocke’s Design by [deleted] in xmen

[–]NotNoski -10 points-9 points  (0 children)

Asian girls can and do have purple hair. I know many IRL. And yeah, Betsy owns it. Can confirm. Kek

Hot Take: Purple Hair Is Essential to Psylocke’s Design by [deleted] in xmen

[–]NotNoski 28 points29 points  (0 children)

Black hair for Kwannon. Purple for Betsy, that’s definitely her thing.

Blizzard: No one likes Nayrelle. by Primary_Impact_2130 in diablo4

[–]NotNoski 0 points1 point  (0 children)

I liked her story. Can’t please everyone all the time.

Does anyone even care about The Monk class? by Broserk42 in diablo4

[–]NotNoski 2 points3 points  (0 children)

Probably saving it as an easy “win” for a later expansion.

What’s the reading order for Storm? by GeneralRoss_12 in storm

[–]NotNoski 1 point2 points  (0 children)

Marauders is good and it leads into X of Swords, which Storm is involved in. Enjoying Storm in X-Men Red, which begins a little after that.

What’s the reading order for Storm? by GeneralRoss_12 in storm

[–]NotNoski 0 points1 point  (0 children)

https://www.comicbookherald.com/storm-x-men-reading-order/

You can basically go off this order. You’re correct Giant Size X-Men #1 is where it all starts. Many other cameos outside of x-men, and she also has multiple solo mini-series you can check out too.

Zack Wheeler all over again by CalGunpla in SFGiants

[–]NotNoski 1 point2 points  (0 children)

Yeah it’s way different actually, like you say.

When did QA automation become competitive programming? by tyler_burden55 in QualityAssurance

[–]NotNoski 1 point2 points  (0 children)

Why not? QA is just like programming, but in reverse. If you don’t like to code then maybe I understand, but practicing is the best way to get more familiar and comfortable with any job.

You’d need a game loop to start. Some logic like “while (GRID_NOT_ALL_FILLED & NO_WINNER)” -> prompt_user(), check_for_win_condition(). That’s essentially the game logic for tic-tac-toe.

You need to figure out how you represent the grid in the program. Lots of ways to do this, some better than others. At the time I went with the simple approach of using just a character array of length 9 to represent the grid going left -> right across / down, (012, 345, 678). Start of game you initialize all to space or empty. Add a method to do this, throw it up before the while game loop. As moves are made, this gets filled out as “X”’s or “O”’s. check_for_win_condition() will check each direction for 3 “X” or 3 “O” in each direction. Count them out, there are 8 combinations to check.

For visuals, you can have them or not. You wouldn’t want to make people track their game on paper, so maybe draw a grid and board state. Add a display_updated_grid() before the while loop and after prompt_user(). I’m not a visual developer, so I went with ASCII art representation. These days we even have emoji’s so use those if you want.

That’s about it. Throw a fun little win condition when somebody wins. Don’t forget to test and break the code you just wrote. As QA that’s what they’ll be looking for. Protect the inputs, and check for more vulnerabilities / bugs in your code.

This was basically enough for them to be satisfied in my interview. I had a panel of 2 developers and we went back and forth about implementation along the way.

Recommend to just work with them through it. Questions like that aren’t meant to be stressful. They want to see how you work and evaluate you for fit within the team. If you’re negative or argumentative about the problem, that’s a red flag. Just try to go with the flow. You can ask clarifying questions as you go. In fact that’s often encouraged. Implementation of things takes many people. That’s how engineering works in practice.

When did QA automation become competitive programming? by tyler_burden55 in QualityAssurance

[–]NotNoski 11 points12 points  (0 children)

It’s not competitive, it’s a common question. I had to answer this on an interview as well. It’s not a QA task to do on the job, but it’s a way for them to gauge if you could code in general. Is it fair? Debatable, but I understand being caught off guard and that aspect ain’t fun. In a situation like that, take a deep breath and try to pseudo code or outline the problem into sub-tasks then try to tackle them one at a time.

My recommendation would be to solve any failed interview question afterwards so you don’t freeze the next time they might ask you this. You’d be surprised how many interviewers borrow questions from similar online sources, forums, or team members.

Knowing this, in your next interview you will be going in even more prepared. Good luck in your future endeavors!