TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What makes an online course amazing?

134 pointsby dewyabout 5 years ago
For those of you who have taken online classes (MOOCs, at college, etc.), what have been the things that made the best classes stand out? (Or conversely, what made the bad ones bad?)<p>Why I&#x27;m asking: I teach a college data science 101 class with at least 1 section online every semester (and will now be switching to all online for at least the next month - thanks, coronavirus...). At the same time, I&#x27;m in the process of redesigning the course, and making new teaching materials and assignments.<p>I&#x27;ve taken completed several amazing MOOCs in the past (e.g. Princeton&#x27;s Algorithms I &amp; II, Stanford&#x27;s Machine Learning), as well as abandoned many more that were simply terrible, so I am no stranger to the online student experience, and I know the things that made certain courses amazing for me personally (e.g. great videos, and well integrated assignments with automated feedback). However, every learner is different, and I would love to hear different perspectives so that I can better redesign my own course.<p>Was it something about the videos? The assignments? The structure? The instructor? Or something else? Thanks!

30 comments

ivan_ahabout 5 years ago
For me the biggest game-changer for online video lectures has been this Chrome plugin that allows for fine-grained control of video speed: <a href="https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;video-speed-controller&#x2F;nffaoalbilbmmfgbnbgppjihopabppdk?hl=en" rel="nofollow">https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;video-speed-contro...</a><p>If you have control over the courseware platform used for your course, make sure it uses a compatible video player based on html5 video and not some custom implementation (very rare).<p>In case video speed controls is not available on your courseware, you can pre-process videos to speed them up to 1.5x using this script (save as `fastervid.sh` and run on video lectures before uploading)<p><pre><code> #!&#x2F;bin&#x2F;bash if [ -z $1 ]; then echo &quot;usage $0 input_video.mp4&quot; exit -1 fi echo &quot;Converting $1 to 1.5x speed...&quot; ffmpeg -i &quot;$1&quot; -filter_complex &quot;[0:v]setpts=0.6666666666666*PTS[v];[0:a]atempo=1.5[a]&quot; -map &quot;[v]&quot; -map &quot;[a]&quot; &quot;tmp-$1&quot; echo &quot;Delaying audio of $1 by 60ms&quot; ffmpeg -i &quot;tmp-$1&quot; -itsoffset 0.06 -i &quot;tmp-$1&quot; -map &quot;0:0&quot; -map &quot;1:1&quot; -acodec copy -vcodec copy &quot;faster-$1&quot; # cleanup temp file rm &quot;tmp-$1&quot;</code></pre>
评论 #22585366 未加载
评论 #22586641 未加载
评论 #22585987 未加载
ricklamersabout 5 years ago
It might not be the most useful answer given the context of your question. But in my experience the thing that made the best courses stand out were the depth of understanding of the instructor and their basic didactic skills. Are they able to explain the concepts clearly to a novice student? Are they able to structure the course into a logical progression of topics?<p>To me, what I consider to be secondary aspects such as interactive quizzes or homework assignments never really made a difference. One thing I noticed that really did not work well for me was asking quiz questions in between that did not require understanding just memorization of what was just said 30 seconds ago. It&#x27;s like you&#x27;re checking if they&#x27;re paying attention v.s. are grasping underlying concepts.<p>I would recommend you check out CS50 by David Malan (if you haven&#x27;t already) as it&#x27;s somewhat of a gold standard for MOOCs in my book.<p>Good luck with your MOOC! The world needs more of them, make sure you make them as publicly accessible as possible.
评论 #22594076 未加载
superasnabout 5 years ago
My answer is very general and I only have experience taking a lot of online courses via sites like udemy but the key factor that makes any course stand out is practical real life examples. It makes everything super interesting and you learn a lot more quickly.<p>Also I&#x27;ve seen that a bit of humor does wonders for learning. Recently did an online course called StatQuest with Josh Starmer(1). I never knew stats &#x2F; ml could be made this interesting.<p>(1) <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;user&#x2F;joshstarmer" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;user&#x2F;joshstarmer</a>
评论 #22583145 未加载
评论 #22582603 未加载
baron816about 5 years ago
You should keep in mind the key difference between your offering run of the mill MOOCs--you&#x27;re students have to complete your course if they want to maintain their GPAs and graduate.<p>This should substantially change how you teach your class. A normal MOOC has to make learning &quot;easy&quot; so that students keep coming back. Unfortunately, when learning is &quot;easy&quot; it doesn&#x27;t stick very well.<p>Effective learning needs to be challenging and force students to dig deep and think critically about what you&#x27;re teaching them. If you give out hints or shortcuts, they&#x27;ll probably like you more, but they&#x27;re not going to build the deep understanding they need to succeed in further courses and in their career. If you&#x27;re good at making them think critically, the whole learning process will feel hard for them, possibly as if they aren&#x27;t learning anything, and they might resent you for that. So it&#x27;s good that they&#x27;re stuck with you. Do the right thing and make sure they&#x27;re really understanding the material and not just memorizing formulas and patterns.
ramesh1994about 5 years ago
I&#x27;ve taken Georgia Tech&#x27;s OMSCS program. What really sets this apart is the active feedback on assignments &#x2F; course interaction from Professors and TAs in Piazza.<p>Current online courses have really watered down content and zero&#x2F;terrible ways of evaluating the material.<p>Things that I like too see in an online course:<p>- Keep assignments on a regular basis (on par with your campus schedule). Quizzes are great to keep them engaged but do not use them to replace regular assignments.<p>- Design them to be auto-graded as much as possible. Bonus points if there was some way the students can evaluate their solution locally.<p>- Something like Piazza&#x2F;Forum setup to answer student questions and have an appropriate number of TAs.<p>- Post all the resources used in the videos to be accessible for later reference (slides and links).<p>If you&#x27;re recording content for future offerings, ensure that the content is consistently updated to stay relevant.
closeparenabout 5 years ago
To the extent that students are writing code: a high quality &quot;autograder&quot; test suite. A tight feedback loop on the correctness of your work&#x2F;understanding is the most powerful learning aid I&#x27;ve ever encountered.<p>Although it&#x27;s a step on the right direction, I&#x27;m not a fan of Coursera&#x27;s &quot;upload a zip file and wait 10 minutes&quot; approach: even that much delay means you&#x27;ve lost your mental &quot;working set&quot; by the time feedback comes. My college professors would give those to us as Make targets in the project scaffolds, which made it closer to &quot;TDD.&quot;<p>In a similar vein, thoughtfully designed interactive environments with good difficulty progression, like Micro-corruption [0]. It&#x27;s easy to imagine something like this for data science (here&#x27;s an RStudio workbench and a dataset, go find the needle in the haystack, etc).<p>[0] <a href="https:&#x2F;&#x2F;microcorruption.com&#x2F;login" rel="nofollow">https:&#x2F;&#x2F;microcorruption.com&#x2F;login</a>
optimatonabout 5 years ago
All of the following in one website or tool&#x2F;sw:<p>1&#x2F; Interactive tutorials and quiz format like brilliant.org<p>2&#x2F; A Wikipedia like comprehensive wiki embeded with course website for all kinds of reference.<p>3&#x2F; An online community — could be a piazza&#x2F;forum.<p>4&#x2F; A github like service integrated with course site specifically for that course where students can submit their projects and be evaluated by other forum members&#x2F;mentors etc.
Dowwieabout 5 years ago
Dan Ariely&#x27;s MOOC on Irrational Behavior (coursera) remains my favorite online course and one of the best overall.<p>The content was engaging. It included guest talks. The course didn&#x27;t shy from hard work, including dozens of required and recommended papers. The curated papers were my favorite part. The course exposed me to an entire ecosystem that I was unaware of. Too many MOOCs are watered down but this one was just right.<p>My best advice is to create a course that management will resent open sourcing because it is so valuable. Demand autonomy and use it create a legacy.
tokipinabout 5 years ago
The biggest issue I&#x27;ve seen in online courses is production values. In fact I think crap production values and the lack of a quality bar is why platforms like Coursera have done poorly compared to their potential.<p>The most obvious issue is usually microphone quality. It&#x27;s baffling that people spend so much effort developing a course and multiply that effort by a shit microphone. If you aren&#x27;t willing to spend&#x2F;get money for a good microphone, your philosophy on what is important for online teaching may have some blind spots IMO.
maher_auabout 5 years ago
I have developed a collaborative learning framework to support the development of learning experiences. The 4 key phases are<p>1. Resource curation 2. Guided active retrieval practice (questions, tasks, self assessment and feedback) 3. Collaborative experiences (professional examples, tadks and feedback) 4. Reflection and connection. (Connecting this learning to what has happened before or is likely to happen next<p>I will get the chapter (With evidence) up on a preprint server shortly -likely the end of the month. If you want the model - dm me on Twitter @maher_au
aryzachabout 5 years ago
Appropriate assignments. For me, that often makes or breaks a MOOC. I want to be stumped in an intellectual way, but not a cryptic way. I don&#x27;t want to feel like I&#x27;m just trying to decode the professors cryptic problem. I want to feel like it&#x27;s a genuine hurdle to learn the content well, yet still accessible, and definitely not busy work.<p>Good example: write an interpreter for the given (made up and simple) programming language. We had to figure out how to implement certain language features such as clojures.<p>Bad example: in networking course, we had to recall details about certain protocols, and do calculations. While this might be useful to know how to do in practice, it didn&#x27;t contribute anything to my understanding, and it just always felt like tedious busy work, and lacked projects that contributed to the course goals.<p>I don&#x27;t know data science, but here&#x27;s a project I&#x27;ve heard of: Somebody&#x27;s hobby was disc golf. Discs come with ratings on them (I&#x27;m assuming things like curve and distance). They created a controlled experiment to take various data points from many discs, and compare them to their stated ratings, and apply a bunch of data science-y things to the data.<p>Edit: I&#x27;d add some type of reference resources like a wiki, and ideally some auto-grader that gives feedback if possible (like what tests failed)
评论 #22584683 未加载
评论 #22582450 未加载
samvherabout 5 years ago
I was going to say that all my favorite courses were kind of unique, and didn&#x27;t share any particular characteristics, but writing this comment I found they actually all share excellent problem sets and an engaging instructor. Having taken ~25-30 online courses, the ones that stood out were:<p>- Discrete Optimization (Coursera&#x2F;Melbourne university, Pascal van Hentenryck): had competitive optimization assignments and course leaderboards. The professor oozed enthousiasm and the nature of the assignments was great for the competitive setup (many different approaches possible, and there were always problems which you would not be able to solve to optimality).<p>- Microeconomics (EdX&#x2F;MIT, Jonathan Gruber): very good assignments that made you discover things yourself. Professor presented with a lot of humor and this course was clearly refined over many iterations on campus. Lectures were actually recorded in a classroom setting so not tuned for MOOC delivery at all.<p>Honorable mentions for Computer Graphics (EdX&#x2F;UC San Diego, Ravi Ramamoorthi, perfect pacing and balanced, broad set of assignments) and Underactuated Robotics (EdX&#x2F;MIT, Russ Tedrake, fascinating material and challenging, elegant assignments).
leggomylibroabout 5 years ago
Hands-on, practical examples. If a class only includes video explanations and some quizzes on what was said in the lectures, I usually forget the subject matter quickly. The best MOOCs that I&#x27;ve taken are the ones that have periodic &quot;lab&quot; assignments which ask me to think and apply the subject matter in ways that the lectures may not have explained in precise detail.<p>Without naming names, here are two examples:<p>I once took a MOOC about &quot;bare-metal&quot; microcontroller programming which didn&#x27;t include any microcontroller coding. Useless.<p>I once took a MOOC about digital circuit design which used an in-browser circuit simulator for problem sets and labs. Extremely helpful.<p>I feel sort of cheated when I work through an online course, only to find out that it would have worked just as well if it were a series of YouTube videos.<p>For college-level data structures, maybe you could ask students to implement their favorite DS from a set of tricky ones? You could write automated tests to verify them so grading is easier for you and development is easier for them.
wespiser_2018about 5 years ago
I&#x27;ve taken almost 10 MOOCs and 5 courses in GT&#x27;s OMSCS program, spanning from a member of Ng&#x27;s first ML course, to a currently lackluster offering I&#x27;m taking for credit.<p>To take a step back, I think what makes a course great is just its ability to transfer knowledge to students and to spark curiosity (further learning after course finishes). Usually, when you take a course in person, the folks teaching the class have ample opportunity to ensure that transfer is happening, in online courses, the onus is really on the student.<p>Thus, in an online course, you need to provide clear learning goals, for instance, &quot;dynamic programming&quot;, a set of lectures that teaches those concepts, then homework or project based work that directly refers to what has been said in the lectures. Decide what your resources are, say, a book, your videos, and a few homework assignments, then try to have the resources build off each other, and make sure information is available in multiple places. Sometimes with difficult concepts, you need things explained twice, from two different sources!<p>The next aspect of a great course is the fostering of a learning community. Make sure the students have a place where they can engage (slack, discord, et cetera) and ask questions. Having students make a social connection has been shown to increase their outcomes in online learning, and for me, the early Coursera courses were amazing for this.<p>Finally, there is the aspect of of running the course. Some students don&#x27;t do well learning online, and I some of this can be explained by the loss of human to human contact and relationship building and mentoring that can help struggling students during in person office hours. A percentage of students truly rely on this, and there is no online alternative. If you don&#x27;t grok them pythonz, data science can be a nightmare (R 4 lyfe!!!).<p>Someone much smarted than me figured out you need 3 things to learn: time invested, a consistent environment, and feedback. Make sure you have enough TAs to actually give student feedback, or figure out an autograder for problems of varying difficulty.
xygabout 5 years ago
I would say these aspects are important:<p>An instructor&#x27;s understanding of the topic he or she is teaching. It is hard to describe but the vision and the depth are just different. In some occasions, I find that it is my preparation prevents me from fully understanding what the instructors are seeing.<p>An instructor&#x27;s passion for the topic, which brings moments for learners to feel &quot;this is fascinating &#x2F;amazing &#x2F;cool &#x2F;interesting. I have never thought about that&quot;. It seems that passion cannot be faked or manipulated, which means one cannot be prepared to demonstrate passion when teaching a course.<p>Teaching and presentation skills, can be trained.<p>Visualization and other technicals, can always be improved.
uinerimakabout 5 years ago
One of the things I like in courses is that fact I can know who&#x27;s studying with me and in few cases I actually became friend with one or two people.<p>Also in online courses it&#x27;s an important factor that not many e-learning sites fully understand the potential
sriram_malharabout 5 years ago
Exercises and frequent quizzes. Passive learning is not learning.
评论 #22581453 未加载
Eridrusabout 5 years ago
This might not really translate to you since the context I have taken online courses in is that I have wanted to learn more so that I could be a more effective software engineer. So I&#x27;m looking for things that show applications quickly.<p>Courses I&#x27;ve gotten a lot out of: Andrew Ng&#x27;s ML course and Yaser Abu-Mostafa&#x27;s learning from data course.<p>In both courses I really felt like I was learning something meaningful. I very clearly remember how mind blowing it was to me that you could turn complex high level tasks into curve fitting. I excitedly told a colleague of this thing I had learned about called linear regression who turned out to be surprised I had not taken a statistics class. Same thing for generalization bounds &amp; VC dimension in Yaser&#x27;s class.<p>I don&#x27;t know if this can really be generalized to all courses since it might just be matching students to courses that make sense to them, but the worst line in a MOOC is &quot;Well, this is boring, but you&#x27;re just going to have to grind through it so that we can solve problems later&quot;. Shout out to the Convex Optimization MOOC I dropped.<p>For Data Science 101 this should be easy. Find some problems that students could imagine wanting to work on and use those problems to drive what you talk about.<p>Also, a pet peeve of mine is courses trying to make me do math by hand. I am 100% going to ask a math package to do an integral for me every time this happens. Sure, somebody has to know all the math deeply, but it&#x27;s not me.<p>So I guess the main takeaway here is that you need to understand your audience. What is appropriate for me is probably not appropriate for 1st semester college kids.
quickthrower2about 5 years ago
I don’t want amazing. I want efficient! Teach me at a speed not to slow and not too fast. Cover the correct topics.<p>A course with missable sections would be good so that if you already know ES6 you don’t need to listen through it on every JS course. Cheat sheets might help with this too.<p>I don’t care much for a super interesting voice as long as it’s a reasonable voice (not monotonous or unclear) and I can learn the thing.
jerome-jhabout 5 years ago
Having taken a number of MOOCs, I would say, for the videos:<p>- the speaker must be standing<p>- the tone should be light, not necessarily funny, but definitely not always the same<p>- there should be illustrations<p>- anecdotes, personal notes, interviews: maybe not at every video but at least one per chapter.<p>- videos should last less than 15min.<p>The talk must not aim to be exhaustive. Students will master the material through provided readings, exercises or quizzes. Some may only watch the videos, others will do the full course.<p>You will probably not have the time to prepare quality videos before the COVID-19 outbreak, so you may limit yourself to an introductory video for every chapter. You may also provide the solution for a couple of exercises in a video on the model of Kahn academy.<p>You should watch the making-of at the end of &quot;Mindshift&quot; on Coursera, by Barbara Oakley.<p>Note that &quot;Introduction to logic&quot; on Coursera has no videos but provides great tools and both funny and serious exercises.<p><i>Bad videos may spoil the course by making your students bored before they even start learning. So insist on quality, not quantity.</i>
评论 #22583399 未加载
jplayer01about 5 years ago
I&#x27;m curious about why people aren&#x27;t naming any courses that exemplify the good or bad things they&#x27;re mentioning.
dominotwabout 5 years ago
MOOC&#x27;s are super boring for people who don&#x27;t like watching videos.<p>I really hope somone builds a mooc on top of something like leetcode.com . Start with easy problems see how far you get, get a hint, if you can&#x27;t then watch a video of concept you are missing and so on.
评论 #22587336 未加载
elliekellyabout 5 years ago
It’s not easy for me to explain (and I would imagine not easy to create in lesson plans) but I think it’s something Colt Steele consistently does well in his Web Dev Bootcamp on Udemy.<p>Here’s my best effort at articulating his teaching style: He walks students directly into the mistakes they’re going to make and then helps guide them out. Most instructors will teach the concept and leave it to students to avoid making mistakes. I learn a lot a better when I know what mistakes to look out for <i>and</i> what to do when I’ve encountered one. But more importantly, I feel like I’ve really mastered the material when I’m confident that I can get myself out of any mess I can get myself into.
评论 #22581956 未加载
ailunabout 5 years ago
Check out David Joyner’s work at Georgia Tech:<p><a href="http:&#x2F;&#x2F;lucylabs.gatech.edu&#x2F;" rel="nofollow">http:&#x2F;&#x2F;lucylabs.gatech.edu&#x2F;</a><p>One of the keys for me is how I get feedback. Multiple choice quizzes can be well-designed. Most are not. But they scale well.<p>Personally I like very challenging assignments, but with very lenient grading and partial credit, with lots of detailed feedback from the grader.<p>If you’re teaching a college course, maybe you have enough TAs to make that happen. You’ll see some of Dr. Joyner’s work is on scaling grading systems and feedback.
decentralisedabout 5 years ago
In my formal education days, I was perma-frustrated that none of my teachers had achieved anything impressive with their work (apart from being published), and I often felt like I was being handed out second-hand knowledge to regurgitate during the exams... and I had to get a job to pay for that level of education!<p>To me what&#x27;s really good about MOOCs is that I can have access to some of the best content and teachers from MIT, etc all from the comfort of my living room.
mgozaydinabout 5 years ago
Cost of a 3-credit course f2f ar Stanford is $ 5.000. But the real cost of an online course ( same course ) , is less than $ 10 . I tell them sell it at $ 100 . But there is a dilemna . How come the same thing is $ 5000 and $ 100 . Even the one for $ 100 is better . Solve the equation . I say make a consortium of online degree programs . Provide degrees from consortium . Any idea .
hither2about 5 years ago
2 cents:<p>I think the internet is the best way to distribute information, but for me one of the worst places to learn.<p>If the learning is solely done via the computer I will fail to even get near to completing the course (self-study, no pressure). But by using pens, paper, books etc, my ability gets to a normal level.<p>So, encourage them to behave close to the way they do in your classes.
j45about 5 years ago
I&#x27;m a technologist in Education. This frightens a lot of educators who are pretenders in Academia trying to lead technology development.<p>Supporting instructors, and instruction directly has been my main area of focus for the past year, in addition to being directly involved in developing online education platforms for the past 20 years in K-12, Academia and Industry.<p>I&#x27;m not sure if you have a tech background, but making sure you have competent technology advisement at all stages is quickly emerging as a key differentiator. If decision makers in academia haven&#x27;t had technical literacy to make technical decisions, it shouldn&#x27;t be a surprise if the experiences are not engaging, because they aren&#x27;t leveraging digital interactions for what they&#x27;re capable of, and instead only what a limited non-technical academic background can imagine.<p>Important:<p>- Not taking the lecture format classroom of the past 100 years and putting it online in video. MOOCs are handicapped before they even begin, quite often. Sure, great instructors who can explain well are good, but they are the exception, and not the norm. Another key problem remains.. god help you if you have to change the video. The key I focus on is how students are experiencing MOOCs as being the main lens. Academic institutions can have a hard time letting the frame go to be student centric instead of instruction-centric. Online education shouldn&#x27;t be rooted in the practice of distance education (correspondence, textbooks, phone calls)<p>- The baseline of the student is that they are far more digitally literate and competent than the institutions they are walking to and most often more than their instructors.<p>- Much of the Academic online education world is designed and anchored in a past of a web browser on a desktop.. by educators who do not have competency in the possibilities or capabilities of tech.<p>- When it comes to making digitally engaging learning experiences, first you have to consider if academics rarely learn how to teach, let alone digitally.<p>- I would seriously pay attention to how students are interacting and studying digitally and focus far less on the existing taxonomies and nomenclature as it does not relate well to self-directed learning.<p>- The Copernican view of curriculum being the sacred cow of Academia is rooted in Math not changing much in a few hundred years, and generally the rate of change in curriculum being slow. In the real world, Academia is quickly reaching a point where they cannot update fast enough to keep pace with the change in the world, and the gap between students and entering a job is increasing.<p>- Again, see what students are doing to stay relevant - it&#x27;s not always formal education.<p>- Learning how to learn is a course I reference early and often to all sides as the key skill being missed.
评论 #22582620 未加载
pezo1919about 5 years ago
To me it&#x27;s giving the right intuition and perspectives. I don&#x27;t really care about the &quot;raw&quot; material&#x2F;math, it comes only after good visualization based intuition.
mgozaydinabout 5 years ago
admi,nistrators . Page design is real bad . Make it attractive .