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: Best online programming class for newbies?

4 pointsby bredmanover 10 years ago
My wife has never programmed before but is trying to learn. She&#x27;s started taking the online CS50X course (https:&#x2F;&#x2F;www.edx.org&#x2F;course&#x2F;harvardx&#x2F;harvardx-cs50x-introduction-computer-1022#.U_10LGSwJuM). I&#x27;m not huge fan of it as it isn&#x27;t how I learned to program, particularly I think C makes learning basic things more complicated than needed. I&#x27;m curious what everyones favorite online classes are for people completely new to programming? Needs to be free (or near free), online, and probably self-directed.<p>Also a huge thanks to the people who make online courses available for free. Despite its shortcomings the Harvard CS50X course is infinitely better than what was available when I went to school.

4 comments

brudgersover 10 years ago
&#x27;Newbie&#x27; covers many experience levels - from afraid to turn the computer on to moving beyond Excel pivot table macros. People need different degrees of handholding.<p>Not necessarily my favorite, Coursera&#x27;s <i>Programming for Everybody</i> [1] moves forward very very slowly. Great for some people, drying paint for others. It is taught in Python.<p>A course I think is great is Coursera&#x27;s <i>Introduction to Systematic Program Design</i> [2] based on Felleisen&#x27;s <i>How to Design Programs</i> introductory text. It is possible to register for the last session, from a year ago, and complete the work on your own. It is taught in Racket.<p>Another course that takes a learn-by-making approach is Coursera&#x27;s <i>Creative Programming for Digital Media &amp; Mobile Apps</i> [3]. It is beginner friendly and really encourages &quot;getting into it&quot;. It is taught in Processing, and in some ways I think Processing is the ideal language for an introductory course in Software Engineering - it is pared down like Racket&#x27;s student languages, provides just a pinch of Java pain, facilitates the production of really interesting output, and the environment provides a fast edit-compile-run loop.<p>For a person who is more oriented toward scientific or mathematical problems, Coursera&#x27;s <i>R Programming</i> [4] might by a good fit.<p>Among the various Python Courses, I would probably go with Udacity&#x27;s <i>Design of Computer Programs: Programming Principles</i> [5] because it is taught by Peter Norvig.<p>All that said, a book may be better than an open-enrollment class for many people, and there&#x27;s a lot more variation.<p>[1] <a href="https://www.coursera.org/course/pythonlearn" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;course&#x2F;pythonlearn</a><p>[2] <a href="https://www.coursera.org/course/programdesign" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;course&#x2F;programdesign</a><p>[3] <a href="https://www.coursera.org/course/digitalmedia" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;course&#x2F;digitalmedia</a><p>[4] <a href="https://www.coursera.org/course/rprog" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;course&#x2F;rprog</a><p>[5] <a href="https://www.udacity.com/course/cs212" rel="nofollow">https:&#x2F;&#x2F;www.udacity.com&#x2F;course&#x2F;cs212</a>
评论 #8237782 未加载
jumasheffover 10 years ago
To me, Python is a great language to start with. Check out the following courses: Udacity CS101 &quot;Intro to CS&quot; (it teaches Python from scratch) <a href="https://www.udacity.com/course/cs101" rel="nofollow">https:&#x2F;&#x2F;www.udacity.com&#x2F;course&#x2F;cs101</a> In parallel with Udacity CS101 , you can advise your spouse to take Python track on Codecademy (it also teaches Python from scratch and it&#x27;s great when combined with Udacity CS101) <a href="http://www.codecademy.com/en/tracks/python" rel="nofollow">http:&#x2F;&#x2F;www.codecademy.com&#x2F;en&#x2F;tracks&#x2F;python</a> After those 2 courses I&#x27;d suggest to take a super-short &quot;Programming foundations with Python&quot; course (it teaches Object-Oriented Programming basics) <a href="https://www.udacity.com/course/viewer#!/c-ud036" rel="nofollow">https:&#x2F;&#x2F;www.udacity.com&#x2F;course&#x2F;viewer#!&#x2F;c-ud036</a> If these are overwhelming, I&#x27;d point to Codecademy&#x27;s HTML&#x2F;CSS, jQuery, Make a Website and Make an Interactive Website tracks. After completing these classes one can move on to JavaScript or Python or Ruby classes. To be short, try to stick with Codecademy and Udacity in the beginning. This is the way how I tought myself how to code and landed a job as a Python&#x2F;Django developer.
评论 #8237803 未加载
NoomHeadover 10 years ago
I strongly believe starting with C is a good programming foundation. This website offers so many great courses <a href="https://www.coursera.org/courses" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;courses</a> But nothing beats the books for me.
vishalzone2002over 10 years ago
I find <a href="http://www.cprogramming.com/" rel="nofollow">http:&#x2F;&#x2F;www.cprogramming.com&#x2F;</a> to be a really thoughtful tutorial.