HACKER Q&A
📣 curious16

Which MOOCs in Math/CS are worth still worth taking in 2022?


MOOCs doesn't necessarily mean courses on platforms like edX or Coursera. They can include university courses with public materials like videos, notes, assignments, etc.


  👤 The_Amp_Walrus Accepted Answer ✓
Nand 2 Tetris: https://www.nand2tetris.org/

In which you, more or less, build a computer from scratch. The course takes you through 12 projects, about 1 week each, where you incrementally build:

a CPU

a RAM chip

a full von Neumann computer

an assembly language

a virtual machine

a high-level language

an operating system

... using NAND gates. All of this is done on your computer using tools provided by the course. Once you've done these projects you will understand the building blocks of a computer from the RAM and CPU, to assembly up to the compiler that executes your programming language of choice. It's a powerful course that will unlock a whole new perspective on computer programming for you. I believe that bang-for-buck it's probably the best online course for someone who is a self-taught programmer. It's practical, fun and mostly oriented around building things.

(from my blog @ https://mattsegal.dev/nand-to-tetris.html)


👤 minhmeoke
I liked the EdX Statistical Learning course by Trevor Hastie and Robert Tibshirani, it's a great introduction to statistical modeling and data science (assuming you already have a solid math and statistics background): https://www.edx.org/course/statistical-learning

It is not too math heavy, and the focus is on basic, interpretable approaches and concepts like:

- linear and polynomial regression

- logistic regression and linear discriminant analysis

- cross-validation and the bootstrap

- model selection and regularization methods (ridge and lasso)

- tree-based methods, random forests and boosting

- support-vector machines

- neural networks and deep learning

- survival models; multiple testing

- some unsupervised learning methods like principal components and clustering (k-means and hierarchical).

The instructors are really articulate and passionate about teaching well. As a bonus, there are guest speakers about every second week including Jerome Friedman and Geoff Hinton.




👤 plaguepilled
If you're willing to branch out into stuff that falls into the "not going to get you hired, but enriching personal experiences" bucket, then my number one recommendation will always be 'A Course in Modern Mathematical Physics' by Peter Szekeres. The book compresses so much into ~1000 pages without feeling like you're missing anything as you go.

You can get a lot from the David Tong lectures if you want something similar but free, but to me, Szekeres wins out on delivery.


👤 imranq
Highly recommend the Stanford course notes on AI. I've found these useful:

* CS224n natural language processing

* CS330 Meta Learning

* CS224U Natural language understanding

* CS234 Reinforcement Learning

* CS221 Artificial intelligence

* CS229 theoretical machine learning

The course notes can be found at CS(x).Stanford.edu such as

cs229.stanford.edu

Of course the main problem isn't that there's not enough good material. The problem is that there's too much! So a course that teaches how to pick the most important courses for oneself is sorely needed


👤 akoblov
Introduction to Databases by CMU https://15445.courses.cs.cmu.edu/fall2022/

It has challenging exercises. And they gave access to their automatic exercise checker.


👤 neaguandrei101
A great course for learning modern web concepts: https://fullstackopen.com/en/ It is free and constantly updated. The best part is that is has exercises and you learn by doing. Quite difficult, you NEED to have experience in programming to finish it.

👤 debanjan16
It is not a MOOC, but two books with overlapping authors.

1. How to Design Programs: https://htdp.org/

2. A Data-Centric Introduction to Computing: https://dcic-world.org/


👤 rg111
Highly recommend these threads:

[0]: https://news.ycombinator.com/item?id=25245125

[1]: https://news.ycombinator.com/item?id=16745042

[2]: https://news.ycombinator.com/item?id=22826722

There are some evergreen ones there.

You will find some courses that are among the best places to get knowledge in those topics.


👤 samsin
Tim Roughgarden’s algorithms course is great, pretty sure it’s on Coursera, Edx and YouTube

👤 Qem
I recommend the Pharo MOOC: https://mooc.pharo.org/

It's a nice course on a current language in the Smalltalk lineage, that even more than 40 years after its introduction still provides mostly unsurpassed programming environments and developer experience.


👤 fakethenews2022
The Coursera AI course videos were good a few years ago. You could audit to see those for free. Don't know if that is still the case. It is probably a good idea to go through all the courses since that reinforces learning. Good introduction to back prop, ReLu, batch norm, attention, GANs, etc...

👤 adultSwim
Graph Neural Networks are an interesting approach to ML on structured data. Two GNN courses I recommend are:

Stanford CS224W, https://web.stanford.edu/class/cs224w/ Zak Jost's Intro To GNNs, https://www.graphneuralnets.com/