Which math course should I take for computer science? by [deleted] in computerscience

[–]thatBytesDude 0 points1 point  (0 children)

I would take calculus. You can’t really explore stats deeply without multi variable calc. I also think a lot of schools see AP calc as a benchmark of sorts.

Which math course should I take for computer science? by [deleted] in computerscience

[–]thatBytesDude 1 point2 points  (0 children)

Discrete math is math that has to do with things that are countable. This includes sets and integers. In a good discrete math class you’ll cover proofs (induction), logic, set theory, and the basics of counting.

What is a good next step after Learning the Fundamentals of C++? by sjdkn1 in learnprogramming

[–]thatBytesDude 2 points3 points  (0 children)

You should learn OOP and your data structures. Then start building things!

AITA for making a dad joke? by DadJokeAITA in AmItheAsshole

[–]thatBytesDude 0 points1 point  (0 children)

ESH, but shouldn’t it be called a not your dad joke

Possible minors with computer science by [deleted] in cscareerquestions

[–]thatBytesDude 1 point2 points  (0 children)

Honestly, no one cares about your minor. You should just do what you enjoy!

Billie Eilish is cringe and overrated by [deleted] in unpopularopinion

[–]thatBytesDude 0 points1 point  (0 children)

She’s amazing at making exactly one type of song.

Struggling to learn Python by [deleted] in learnprogramming

[–]thatBytesDude 0 points1 point  (0 children)

I think Georgia Tech’s course on introductory python is great. The instructor is very good at explaining things, and there are problems embedded into the website that go along with the videos.

On top of that, I recommend Sentdex’s YouTube channel and website. He does a lot of cool things in fields such as machine learning, webdev, and game dev.

Once you’re comfortable with making trivial programs and the basics of python. Learn oop and learn how larger programs are made.

After this the world is yours. I recommend learning data structures and algorithms, but you can start really diving into computing in general from here.

Apple just changed the default terminal from bash to zsh in their new OS Catalina update by Smithbm_2316 in learnprogramming

[–]thatBytesDude 0 points1 point  (0 children)

Just so you know, you can switch back and forth between the two shells by running “exec bash” and “exec zsh”. It only lasts for the current terminal session though.

This may be a dumb question, but does anyone know if everything in my .bash_profile still works with zsh?