10 ms·
Taking CS50 feels similar to watching a movie that has an auteur’s fingerprints all over it. Every word in the lecture, every technology, and every problem set
by cjf4 6y ago
Taking CS50 feels similar to watching a movie that has an auteur’s fingerprints all over it. Every word in the lecture, every technology, and every problem set has been carefully crafted to fit together to create a cohesive experience.
College instructors everywhere should take the course to see what the zenith of multimedia online education looks like.
- sseagull 6y agoOne thing to keep in mind is that (according to the article) he took over the course in 2007. I have been interested in pedagogy and talking with all the great teachers, the one thing I see in common is the ability to update, improve, and iterate. Constantly. Pretty much every time the course is taught there is something slightly different. There is risk there (sometimes changes are harmful) but that is how you make the course better. My guess is that is the case here, and that the course 13 years ago was not nearly as refined. But he had a vision and stuck with it.
- bachmeier 6y agoI've watched some of the lectures of CS50 in the past, and the one question that has always come into my mind is this: "How do these lectures help you learn at a deep level?" I already knew most of the material, so I found it to be an entertaining review, but that's different from a beginner needing to learn new material at a deep level. I kind of think it'd be a nightmare to take good notes while watching his lectures. I'm not bashing the lecture style, but if I were a student, I'd prefer a good textbook to those lectures. In contrast, I watched all the lectures of Martin Odersky's functional programming MOOC. I learned a ton from that even when I'd already seen the material. His presentations were lower tech, with less razzle-dazzle, but my goal was to learn. His presentations are optimized (intentionally or not) to facilitate good note taking and later application.
- arcturus17 6y ago1. There’s a companion C book for the course 2. The labs go into much more detail compared to lectures 3. The psets can be Nintendo-hard; you’ll be doing devilish pointer stuff by week 3 or 4. The happy-go-lucky, flashy tone of the course is completely misleading. It is a challenging course, so much so that it’s been the subject of numerous cheating scandals from students caving under the pressure over the years. As for depth, this is a first intro to CS meant not only for CS majors but for people from other domains (Econ, humanities, hard sciences, what have you). The style is meant to cater to people who might not be a priori fascinated by flipping bits. Still quite a bit of people decide to concentrate on CS after taking the class, so it must be doing something right in that sense... The course is not mandatory for CS concentrators, so if you already know your fundamentals you can jump right into CS51 (functional programming) or CS61 (intro to systems), which are outstanding courses but much more terse in style.
- bachmeier 6y agoMy comments were focused specifically on the lecture style - I just don't see the CS50 lectures as particularly effective. The students are almost certainly doing their learning by reading the textbook, attending the labs, and doing the problem sets that you mention. I have trouble seeing how the lectures contribute to truly learning the material. They're designed for passive consumption. I wasn't referring to depth of topics but depth of learning. The latter is how deep you understand a given set of material. Passive consumption of an entertaining lecture doesn't help much. > Still quite a bit of people decide to concentrate on CS after taking the class, so it must be doing something right in that sense... That means it's optimized for recruiting folks to the field of CS rather than optimized for student learning. The only reason I've ever taken a class is to learn.
- aspaviento 6y ago> Passive consumption of an entertaining lecture doesn't help much. I wholeheartedly disagree. It's said on a video linked in another comment, students can learn by associating the emotions they are experiencing with the content they are receiving. Specially if his classes are that outstanding.
- bachmeier 6y agoThis research, out of Harvard, disagrees: https://news.harvard.edu/gazette/story/2019/09/study-shows-that-students-learn-more-when-taking-part-in-classrooms-that-employ-active-learning-strategies/ https://news.harvard.edu/gazette/story/2019/09/study-shows-t... That's certainly not the only evidence that passive lecturing isn't particularly effective: https://www.sciencemag.org/news/2014/05/lectures-arent-just-boring-theyre-ineffective-too-study-finds https://www.sciencemag.org/news/2014/05/lectures-arent-just-... It's not hard to find other papers showing the same thing.
- aspaviento 6y agoYou misunderstood me, I never said passive lecturing was better than active, what I said is that it is useful (as opposed to your "doesn't help much") and as an "entertaining lecture" (quoting you again), not as a boring one as the second article states. Clearly an active one has more chances of sticking with you but don't you remember any particular scene in a show that for whatever reason you can't never forget?
- CydeWeys 6y ago> I'm not bashing the lecture style, but if I were a student, I'd prefer a good textbook to those lectures. I suspect you're in the minority here. The majority of students are more engaged by a good professor lecturing on material than by reading a textbook. This is especially true for introductory classes which CS50 is, because a lot of the students are from other majors and are being introduced to the entire field for the first time. It's hard to enter a new field just by reading a textbook.
- bachmeier 6y ago> I suspect you're in the minority here. The majority of students are more engaged by a good professor lecturing on material than by reading a textbook. Me too. I'm not saying that in general textbooks are better than lectures, I'm saying the lecture style of this class is sufficiently ineffective that I don't see how it's worth anyone's time to watch. In contrast, Martin Odersky's lectures are designed to effectively teach the material, and they absolutely are better than reading a textbook. The difference might be that I've always learned by taking notes and working through the ideas during the lecture. For those that are into passive lecture consumption, CS50 is about as close to perfect as you'll find. The style definitely doesn't work for me.
- CydeWeys 6y ago> I'm saying the lecture style of this class is sufficiently ineffective that I don't see how it's worth anyone's time to watch. Again, you're incorrectly extrapolating from your minority view and making global statements about how it's not worth anyone else's time. This lecture style is very effective for most people and is absolutely worth their time. Witness how highly rated the class is, and how successful it is at drawing people in to the major. > The style definitely doesn't work for me. That is a fair statement. But saying it's not worth anyone's time absolutely isn't, and is directly contradicted by the fact that this class is in fact highly successful, well-rated, and does a good job of accomplishing its goal of introducing people to the field.
- bachmeier 6y ago
- phaus 6y agoWhen I took the course as a near-beginner (someone who had taken programming 101 classes before but struggled to make anything useful), I found that jumping between languages frequently was more frustrating than helpful. Ultimately I moved on to something else. CS50 had high production values but I didn't find it superior in any other way. None of the content is bad, but I didn't get the feeling that many seem to have that its the greatest intro to CS. Definitely didn't seem super beginner friendly after the first week or so. Perhaps I'm too slow at picking this stuff up.
- superhuzza 6y ago>I've watched some of the lectures of CS50 in the past, and the one question that has always come into my mind is this: "How do these lectures help you learn at a deep level?" I learned basic programming by doing CS50x. The purpose of the lectures is to introduce the concepts in an engaging way, and spark interest in doing it yourself. Then the learning happens in the weekly assignments, where you have to actually implement the ideas and get your code past the automated testing. I'd say the assignments are 3/4 of the course. It's a very nice introduction to programming for someone who hasn't done any before. And in the end that's what it is - an introduction, not a deep dive.
- cosmodisk 6y agoThat's why it's called an intro course: it covers a lot but none of it too deep. From what I understand the course is taken not by those who've been doing programming since childhood but also by those in almost completely unrelated fields. There's plenty of courses that can be taken later that go very deep.
- erikbye 6y ago> I'm not bashing the lecture style, but if I were a student, I'd prefer a good textbook to those lectures. There are supplemental textbooks listed for the course: https://cs50.harvard.edu/college/2020/spring/syllabus/#books https://cs50.harvard.edu/college/2020/spring/syllabus/#books Also, confused why you expect depth from something with "intro" in its title.
- cpursley 6y agoDo you mind sharing the name or url to these MOOCs?
- kyawzazaw 6y agothere is also lecture notes made already more often that not, as a CS student for most core cs classes, i have barely written any notes.
- zholito 6y agoYou are probably an exception: self motivated individual. The rest of us, which I assume is a big majority: prefer video over text, are more engaged by visual interactions, and still found big parts of this material hard to grasp, not to mention the preference for the free availability of the material.