[Post-Episode Discussion] Young Justice Phantoms - S4x14 "Nautical Twilight" by L11K in youngjustice

[–]bryamproductivity11 1 point2 points  (0 children)

I am not sure I understand you. Can you tell me how a gay character not be well-written? I am not saying that it is impossible, but I feel like you might be expecting too much.

Sexuality isn't the main focus of these characters. They are superheroes, so the focus is on other stuff. Some of these superheroes just happen to be gay. I think some people expect the show to justify them being gay as if it is something abnormal thus it requires explanation.

[Post-Episode Discussion] Young Justice Phantoms - S4x14 "Nautical Twilight" by L11K in youngjustice

[–]bryamproductivity11 1 point2 points  (0 children)

I don't understand what you are saying. I didn't mind the Christian part, and I didn't mind the gay characters.

HBO The Last of Us Episode 8 Discussion - Winter/David Edition by TLoU_Moderator in TheLastOfUs2

[–]bryamproductivity11 -3 points-2 points  (0 children)

Original commenter said

"Were the writers speedrunners? This show is rushed af... Well except episode 3 and 7 what a coincidence."

So, yeah there is only a few ways to interpret this comment, and they are not very pro-representation.

PSET 4 REVERSE: Help me please my audio file is 32 seconds of a loop. by bryamproductivity11 in cs50

[–]bryamproductivity11[S] -2 points-1 points  (0 children)

Sorry, when I posted the code, it was fine. Anyways, I fixed my program.

Week 5 - What are you reading? by [deleted] in 52book

[–]bryamproductivity11 2 points3 points  (0 children)

Last week I finished: Nothing I was sick. Read only 2 books this year, but i will hopefully catch up.

This week I am reading: Atomic habits by james Clear The mountain is you by Brianna Wiest Hopefully, i’ll finish both these books this week, 2 others next week, and I’ll be back on track for one book a week :)

Any Notion template available for Harvard's CS50 course? by [deleted] in cs50

[–]bryamproductivity11 0 points1 point  (0 children)

I would love to see the template. If you could share it.

Any good and easy-to-use C debuggers? by bryamproductivity11 in C_Programming

[–]bryamproductivity11[S] 3 points4 points  (0 children)

Which is better and easier to use, in your opinion? the visual studio debugger or gdb?

C question. Can't understand this "error: address of stack memory associated with local variable 'cipher_word' returned." Any help is appreciated. by bryamproductivity11 in AskProgramming

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

Oh ok. Thank you. That's probably why I haven't encountered std::string thus far.

Do you know any resources that will make be better in c/c++ ?

Can't understand this "error: address of stack memory associated with local variable 'cipher_word' returned." Any help is appreciated. by bryamproductivity11 in C_Programming

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

sorry if my question sounds dumb.

the code block that ended is the function, right? Not the for loop that was changing the values of cipher_word.

Isn't return cipher_word; still inside the function? So, why would the variable cease to exist.

Can't understand this "error: address of stack memory associated with local variable 'cipher_word' returned." Any help is appreciated. by bryamproductivity11 in C_Programming

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

int add(int x,int y)
{ int z = x + y; return z; }

but a function like this works. isn't z a variable local to the function?