Skip to content

List of awesome university courses for learning Computer Science!

Notifications You must be signed in to change notification settings

segmentation/awesome-courses

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Repository files navigation

Awesome Courses

Introduction

There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome courses which make their high-quality material i.e. assignments, lectures, notes, readings & examinations available online for free.

Table of Contents

Legend

  • Lecture Videos - Lecture Videos
  • Lecture Notes - Lecture Notes
  • Assignments - Assignments / Labs
  • Readings - Readings

Courses

Systems

Assignments

- CS107 is the third course in Stanford's introductory programming sequence. The course will work from the C programming language down to the microprocessor to de-mystify the machine. With a complete understanding of how computer systems execute programs and manipulate data, you will become a more effective programmer, especially in dealing with issues of debugging, performance, portability, and robustness. - [Lecture Videos](https://www.youtube.com/playlist?list=PL08D9FA018A965057&spfreload=10) - [Assignments](http://web.stanford.edu/class/cs107/assignments.html) - [CS 140](http://web.stanford.edu/~ouster/cgi-bin/cs140-spring14/lectures.php) **Operating Systems** *Stanford University*

Assignments

Lecture Notes

- This class introduces the basic facilities provided in modern operating systems. The course divides into three major sections. The first part of the course discusses concurrency. The second part of the course addresses the problem of memory management. The third major part of the course concerns file systems. - [Lecture Notes](http://web.stanford.edu/~ouster/cgi-bin/cs140-spring14/lectures.php) - [Assignments](http://web.stanford.edu/~ouster/cgi-bin/cs140-spring14/projects.php) - [CS 162](http://cs162.eecs.berkeley.edu/) **Operating Systems and Systems Programming** *UC Berkeley*

Lecture Videos

Lecture Notes

Assignments

Readings

- Operating Systems course by the Chair of EECS, UC Berkeley [David Culler](http://www.cs.berkeley.edu/~culler/) - [Youtube Playlist](https://www.youtube.com/playlist?list=PL-XXv-cvA_iAARFmCufZ6XeMPPgAzNSNa) Fall 2014 lectures - [CS 186](https://sites.google.com/site/cs186fall2013/home) **Introduction to Database Systems** *UC Berkeley*

Assignments

Readings

Lecture Notes

- In the project assignments in CS186, you will write a basic database management system called SimpleDB. For this project, you will focus on implementing the core modules required to access stored data on disk; in future projects, you will add support for various query processing operators, as well as transactions, locking, and concurrent queries. - [Lecture Notes](https://sites.google.com/site/cs186fall2013/section-notes) - [Projects](https://sites.google.com/site/cs186fall2013/homeworks) - [CS 241](https://courses.engr.illinois.edu/cs241/fa2014/index.html) **Systems Programming (Fall 2014)** *Univ of Illinois, Urbana-Champaign*

Lecture Videos

Assignments

Lecture Notes

- System programming refers to writing code that tasks advantage of operating system support for programmers. This course is designed to introduce you to system programming. By the end of this course, you should be proficient at writing programs that take full advantage of operating system support. To be concrete, we need to fix an operating system and we need to choose a programming language for writing programs. We chose the C language running on a Linux/UNIX operating system (which implements the POSIX standard interface between the programmer and the OS). - [Assignments](https://courses.engr.illinois.edu/cs241/fa2014/mp.html) - [Github Page](http://angrave.github.io/sys/#) - [Crowd Sourced Book](https://github.com/angrave/SystemProgramming/wiki) - [CS 425](https://courses.engr.illinois.edu/cs425/fa2014/index.html) **Distributed Systems** *Univ of Illinois, Urbana-Champaign*

Lecture Videos

Assignments

Readings

- Brilliant set of lectures and reading material covering fundamental concepts in distributed systems such as Vector clocks, Consensus and Paxos. This is the 2014 version by Prof Indranil Gupta. - [Lectures](https://courses.engr.illinois.edu/cs425/fa2014/lectures.html) - [Assignments](https://courses.engr.illinois.edu/cs425/assignments.html) - [CS 452](http://www.cgl.uwaterloo.ca/~wmcowan/teaching/cs452/s12/) **Real-Time Programming** *University of Waterloo*

Assignments

Lecture Notes

- Write a real-time OS microkernel in C, and application code to operate a model train set in response to real-time sensor information. The communication with the train set runs at 2400 baud so it takes about 61 milliseconds to ask all of the sensors for data about the train's possible location. This makes it particularly challenging because a train can move about 3 centimeters in that time. One of the most challenging and time-consuming courses at the University of Waterloo. - [Assignments](http://www.cgl.uwaterloo.ca/~wmcowan/teaching/cs452/s12/assignments/index.html) - [Lecture notes](http://www.cgl.uwaterloo.ca/~wmcowan/teaching/cs452/s12/notes/index.html) - [CS 2043](http://www.cs.cornell.edu/courses/CS2043/2014sp/) **Unix Tools & Scripting** *Cornell University*

Assignments

Lecture Notes

Readings

- UNIX-like systems are increasingly being used on personal computers, mobile phones, web servers, and many other systems. They represent a wonderful family of programming environments useful both to computer scientists and to people in many other fields, such as computational biology and computational linguistics, in which data is naturally represented by strings. This course provides an intensive training to develop skills in Unix command line tools and scripting that enable the accomplishment and automation of large and challenging computing tasks. The syllabus takes students from shell basics and piping, to regular-expression processing tools, to shell scripting and Python. - [Syllabus](http://www.cs.cornell.edu/courses/CS2043/2014sp/) - [Lectures](http://www.cs.cornell.edu/courses/CS2043/2014sp/) - [Assignments](http://www.cs.cornell.edu/courses/CS2043/2014sp/) - [CS 3410](http://www.cs.cornell.edu/courses/CS3410/2014sp/) **Computer System Organization and Programming** *Cornell University*

Assignments

Lecture Notes

Readings

- CS3410 provides an introduction to computer organization, systems programming and the hardware/software interface. Topics include instruction sets, computer arithmetic, datapath design, data formats, addressing modes, memory hierarchies including caches and virtual memory, I/O devices, bus-based I/O systems, and multicore architectures. Students learn assembly language programming and design a pipelined RISC processor. - [Lectures](http://www.cs.cornell.edu/courses/CS3410/2014sp/schedule.html) - [Assignments](http://www.cs.cornell.edu/courses/CS3410/2014sp/schedule.html) - [CS 4410](http://www.cs.cornell.edu/courses/CS4410/2014fa/) **Operating Systems** *Cornell University*

Lecture Notes

Readings

- CS 4410 covers systems programming and introductory operating system design and implementation. We will cover the basics of operating systems, namely structure, concurrency, scheduling, synchronization, memory management, filesystems, security and networking. The course is open to any undergraduate who has mastered the material in CS3410/ECE3140. - [Syllabus](http://www.cs.cornell.edu/courses/CS4410/2014fa/slides/01-intro.pptx) - [Lectures](http://www.cs.cornell.edu/courses/CS4410/2014fa/lectures.php) - [CS 4414](http://rust-class.org/index.html) **Operating Systems** *University of Virginia*

Lecture Videos

Assignments

- A course (that) covers topics including: Analysis process communication and synchronization; resource management; virtual memory management algorithms; file systems; and networking and distributed systems. The primary goal of this course is to improve your ability to build scalable, robust and secure computing systems. It focuses on doing that by understanding what underlies the core abstractions of modern computer systems. - [Syllabus](http://rust-class.org/pages/syllabus.html) - [Lectures](http://rust-class.org/pages/classes.html) - [CS 5412](http://www.cs.cornell.edu/Courses/CS5412/2014sp/) **Cloud Computing** *Cornell University*

Lecture Notes

Readings

- Taught by one of the stalwarts of this field, Prof Ken Birman, this course has a fantastic set of slides that one can go through. The Prof's [book](http://www.amazon.com/Guide-Reliable-Distributed-Systems-High-Assurance/dp/1447124154) is also a gem and recommended as a must read in Google's tutorial on [Distributed System Design](http://www.hpcs.cs.tsukuba.ac.jp/~tatebe/lecture/h23/dsys/dsd-tutorial.html) - [Slides](http://www.cs.cornell.edu/Courses/CS5412/2014sp/Syllabus.htm) - [CSCE 3613](http://comp.uark.edu/~wingning/csce3613/csce3613.html) **Operating Systems** *University of Arkansas (Fayetteville)*

Assignments

Lecture Notes

Readings

- An introduction to operating systems including topics in system structures, process management, storage management, files, distributed systems, and case studies. - [Syllabus](http://comp.uark.edu/~wingning/csce3613/CSCE3613.pdf) - [Assignments](http://comp.uark.edu/~wingning/csce3613/Homework3613.html) - [Lecture Notes](http://comp.uark.edu/~wingning/csce3613/CourseNote3613.html) - [Readings](http://comp.uark.edu/~wingning/csce3613/Link3613.html) - [CSCI 360](http://compsci.hunter.cuny.edu/~sweiss/course_materials/csci360/csci360_f14.php) **Computer Architecture 3** *CUNY Hunter College*

Assignments

Lecture Notes

- A course that covers cache design, buses, memory hierarchies, processor-peripheral interfaces, and multiprocessors, including GPUs. - [CSCI 493.66](http://compsci.hunter.cuny.edu/~sweiss/course_materials/csci493.66/csci493.66_spr12.php) **UNIX System Programming (formerly UNIX Tools)** *CUNY Hunter College*

Assignments

Lecture Notes

- A course that is mostly about writing programs against the UNIX API, covering all of the basic parts of the kernel interface and libraries, including files, processes, terminal control, signals, and threading. - [CSCI 493.75](http://compsci.hunter.cuny.edu/~sweiss/course_materials/csci493.65/csci493.65_spr14.php) **Parallel Computing** *CUNY Hunter College*

Assignments

Lecture Notes

- The course is an introduction to parallel algorithms and parallel programming in C and C++, using the Message Passing Interface (MPI) and the OpenMP application programming interface. It also includes a brief introduction to parallel architectures and interconnection networks. It is both theoretical and practical, including material on design methodology, performance analysis, and mathematical concepts, as well as details on programming using MPI and OpenMP. - [ECE 459](http://patricklam.ca/p4p/) **Programming for Performance** *University of Waterloo*

Lecture Notes

Assignments

- Learn techniques for profiling, rearchitecting, and implementing software systems that can handle industrial-sized inputs, and to design and build critical software infrastructure. Learn performance optimization through parallelization, multithreading, async I/O, vectorization and GPU programming, and distributed computing. - [Lecture slides](http://patricklam.ca/p4p/notes/) - [MAE 6740](http://verifiablerobotics.com/courses/mae6740.html) **Hybrid Systems** *Cornell University*

Lecture Notes

Readings

- This course will discuss the modeling of hybrid systems, the analysis and simulation of their behavior, different control methodologies as well as verification techniques. To complement the theoretical aspect, several state of the art tools will be introduced. New and emerging topics in hybrid systems research will be presented as well. As the field of hybrid systems is a truly interdisciplinary one, drawing researchers from dynamical systems, control theory, computer aided verification, automata theory and other fields, one of the goals of this course is to teach students the language that will allow them to bridge the gap between these traditionally disjoint disciplines. - [Lectures](http://verifiablerobotics.com/courses/mae6740.html) - [Readings](http://verifiablerobotics.com/courses/mae6740.html) - [PODC](http://dcg.ethz.ch/lectures/podc_allstars/) **Principles of Distributed Computing** *ETH-Zurich*

Assignments

Readings

Lecture Notes

- Explore essential algorithmic ideas and lower bound techniques, basically the "pearls" of distributed computing in an easy-to-read set of lecture notes, combined with complete exercises and solutions. - [Book](http://dcg.ethz.ch/lectures/podc_allstars/lecture/podc.pdf) - [Assignments and Solutions](http://dcg.ethz.ch/lectures/podc_allstars/) - [SPAC](http://homes.cs.washington.edu/~djg/teachingMaterials/spac/) **Parallelism and Concurrency** *Univ of Washington*

Readings

- Technically not a course nevertheless an awesome collection of materials used by Prof Dan Grossman to teach parallelism and concurrency concepts to sophomores at UWash - [6.824](http://css.csail.mit.edu/6.824/2014/index.html) **Distributed Systems** *MIT*

Assignments

Lecture Notes

- MIT's graduate-level DS course with a focus on fault tolerance, replication, and consistency, all taught via awesome lab assignments in Golang! - [Assignments](http://css.csail.mit.edu/6.824/2014/labs/) - Just do `git clone git://g.csail.mit.edu/6.824-golabs-2014 6.824` - [Readings](http://css.csail.mit.edu/6.824/2014/schedule.html) - [6.828](http://pdos.csail.mit.edu/6.828/2014/) **Operating Systems** *MIT*

Assignments

Lecture Notes

- MIT's operating systems course focusing on the fundamentals of OS design including booting, memory management, environments, file systems, multitasking, and more. In a series of lab assignments, you will build JOS, an OS exokernel written in C. - [Assignments](http://pdos.csail.mit.edu/6.828/2014/labguide.html) - [Lectures](http://pdos.csail.mit.edu/6.828/2014/schedule.html) - [15-213](http://www.cs.cmu.edu/~213/) **Introduction to Computer Systems (ICS)** *Carnegie-Mellon University*

Assignments

Lecture Notes

- The ICS course provides a programmer's view of how computer systems execute programs, store information, and communicate. It enables students to become more effective programmers, especially in dealing with issues of performance, portability and robustness. It also serves as a foundation for courses on compilers, networks, operating systems, and computer architecture, where a deeper understanding of systems-level issues is required. Topics covered include: machine-level code and its generation by optimizing compilers, performance evaluation and optimization, computer arithmetic, memory organization and management, networking technology and protocols, and supporting concurrent computation. - This is the must-have course for everyone in CMU who wants to learn some computer scienve no matter what major are you in. Because it's CMU (The course number is as same as the zip code of CMU)! - [Lecture Notes](http://www.cs.cmu.edu/~213/schedule.html) - [Assignments](http://csapp.cs.cmu.edu/public/labs.html) - [15-440](http://www.cs.cmu.edu/~dga/15-440/F12/index.html) **Distributed Systems** *Carnegie-Mellon University*

Assignments

Lecture Notes

- Introduction to distributed systems with a focus on teaching concepts via projects implemented in the Go programming language. - [Assignments](http://www.cs.cmu.edu/~dga/15-440/F12/assignments.html) - [15-749](http://www.andrew.cmu.edu/course/15-749/) **Engineering Distributed Systems** *Carnegie-Mellon University*

Readings

- A project focused course on Distributed Systems with an awesome list of readings - [Readings](http://www.andrew.cmu.edu/course/15-749/READINGS/) - [18-447](http://www.ece.cmu.edu/~ece447/s14/doku.php?id=start) **Introduction to Computer Architecture** *CMU*

Lecture Videos

Assignments

Readings

- Very comprehensive material on Computer Architecture - definitely more than just "introduction". Online material is very user-friendly, even the recitation videos available online. This is the Spring'14 version by Prof. [Onur Mutlu ](http://users.ece.cmu.edu/~omutlu/) - [Lectures and Recitation](http://www.ece.cmu.edu/~ece447/s14/doku.php?id=schedule) - [Homeworks](http://www.ece.cmu.edu/~ece447/s14/doku.php?id=homeworks) 7 HWs with answer set as well - [Readings] (http://www.ece.cmu.edu/~ece447/s14/doku.php?id=readings) - [VU:Distributed Systems](http://www.distributed-systems.net/index.php?id=distributed-systems-principles-and-paradigms) **Distributed Systems: Principles and Paradigms (Fall 2012)** *Vrije Universiteit, Amsterdam*

Lecture Videos

Assignments

Lecture Notes

- Distributed systems often appear to be highly complex and intertwined networked systems. Touching one component often affects many others in surprising ways. In this course, we aim at explaining the basics of distributed systems by systematically taking different perspectives, and subsequently bringing these perspectives together by looking at often-applied organizations of distributed systems. This course closely follows the timeless classic Distributed Systems: Principles and Paradigms by some of the pioneers in the field of Distributes systems-Andrew S. Tanenbaum and Maarten van Steen - [Slides](http://www.distributed-systems.net/courses/ds/ds-slides/) - [Video lectures](http://www.distributed-systems.net/courses/ds/ds-screencasts/) - [Exams](http://www.distributed-systems.net/courses/ds/ds-exams/)

Programming Languages / Compilers

  • CIS 194Introduction to HaskellPenn EngineeringAssignmentsLecture Notes
    • Explore the joys of functional programming, using Haskell as a vehicle. The aim of the course will be to allow you to use Haskell to easily and conveniently write practical programs.
    • Previous semester also available, with more exercises
    • Assignments & Lectures
  • ClojureFunctional Programming with ClojureUniversity of HelsinkiAssignments
    • The course is an introduction to functional programming with a dynamically typed language Clojure. We start with an introduction to Clojure; its syntax and development environment. Clojure has a good selection of data structures and we cover most of them. We also go through the basics of recursion and higher-order functions. The course material is in English.
    • Github Page
  • COS 326Functional ProgrammingPrinceton UniversityAssignmentsLecture Notes
    • Covers functional programming concepts like closures, tail-call recursion & parallelism using the OCaml programming language
    • Lectures
    • Assignments
  • CS 164Hack your language!UC BerkeleyLecture VideosAssignmentsLecture Notes
  • CS 173Programming LanguagesBrown UniversityLecture VideosAssignments
    • Course by Prof. Krishnamurthi (author of HtDP) and numerous other awesomebooks on programming languages. Uses a custom designed Pyret programming language to teach the concepts. There was an online class hosted in 2012, which includes all lecture videos for you to enjoy.
    • Videos
    • Assignments
  • CS 240hFunctional Systems in HaskellStanford UniversityAssignmentsLecture Notes
  • CS 421Programming Languages and CompilersUniv of Illinois, Urbana-ChampaignLecture VideosAssignmentsLecture Notes Course that uses OCaml to teach functional programming and programming language design.
  • CS 3110Data Structures and Functional ProgrammingCornell UniversityAssignmentsLecture Notes
    • Another course that uses OCaml to teach alternative programming paradigms, especially functional and concurrent programming.
    • Lecture Slides
    • Assignments
  • CS 4120Introduction to CompilersCornell UniversityAssignmentsLecture NotesReadings
    • An introduction to the specification and implementation of modern compilers. Topics covered include lexical scanning, parsing, type checking, code generation and translation, an introduction to optimization, and compile-time and run-time support for modern programming languages. As part of the course, students build a working compiler for an object-oriented language.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4400Programming LanguagesNortheastern UniversityAssignmentsLecture NotesReadings
    • This is a course on the study, design, and implementation of programming languages.
    • The course works at two simultaneous levels: first, we will use a programming language that can demonstrate a wide variety of programming paradigms. Second, using this language, we will learn about the mechanics behind programming languages by implementing our own language(s). The two level approach usually means that we will often see how to use a certain feature, and continue by implementing it.
    • Syllabus
    • Lecture Notes/Resources
    • Homework
  • CS 4610Programming Languages and CompilersUniversity of VirginiaAssignmentsLecture Notes
    • Course that uses OCaml to teach functional programming and programming language design. Each assignment is a part of an interpreter and compiler for an object-oriented language similar to Java, and you are required to use a different language for each assignment (i.e., choose 4 from Python, JS, OCaml, Haskell, Ruby).
    • Lecture Notes
    • Assignments
  • CS 5114Network Programming LanguagesCornell UniversityLecture NotesReadings
    • An introduction to the specification and implementation of modern compilers. Topics covered include lexical scanning, parsing, type checking, code generation and translation, an introduction to optimization, and compile-time and run-time support for modern programming languages. As part of the course, students build a working compiler for an object-oriented language.
    • Syllabus
    • Lectures
  • CS 5142Scripting LanguagesCornell UniversityLecture NotesAssignments
    • Perl, PHP, JavaScript, VisualBasic -- they are often-requested skills for employment, but most of us do not have the time to find out what they are all about. In this course, you learn how to use scripting languages for rapid prototyping, web programming, data processing, and application extension. Besides covering traditional programming languages concepts as they apply to scripting (e.g., dynamic typing and scoping), this course looks at new concepts rarely found in traditional languages (e.g., string interpolation, hashes, and polylingual code). Through a series of small projects, you use different languages to achieve programming tasks that highlight the strengths and weaknesses of scripting. As a side effect, you practice teaching yourself new languages.
    • Syllabus
    • Lectures
    • Assignments
  • CS 5470CompilersUniversity of UtahAssignmentsLecture NotesReadings
    • If you're a fan of Prof Matt's writing on his fantastic blog you ought to give this a shot. The course covers the design and implementation of compilers, and it explores related topics such as interpreters, virtual machines and runtime systems. Aside from the Prof's witty take on cheating the page has tons of interesting links on programming languages, parsing and compilers.
    • Lecture Notes
    • Projects
  • CS 6118Types and SemanticsCornell UniversityLecture NotesReadings
    • Types and Semantics is about designing and understand programming languages, whether they be domain specific or general purpose. The goal of this class is to provide a variety of tools for designing custom (programming) languages for whatever task is at hand. Part of that will be a variety of insights on how languages work along with experiences from working with academics and industry on creating new languages such as Ceylon and Kotlin. The class focuses on types and semantics and the interplay between them. This means category theory and constructive type theory (e.g. Coq and richer variations) are ancillary topics of the class. The class also covers unconventional semantic domains such as classical linear type theory in order to both break students from convential thinking and to provide powerful targets capable of formalizing thinks like networking protocols, resource-sensitive computation, and concurrency constructs. The class project is to design and formalize a (programming) language for a purpose of the student's choosing, and assignments are designed to ensure students have had a chance to practice applying the techniques learned in class before culminating these skills in the class project.
    • Syllabus
    • Lectures
  • CSE 341Programming LanguagesUniversity of WashingtonAssignmentsLecture Notes
    • Covers non-imperative paradigms and languages such as Ruby, Racket, and ML and the fundamentals of programming languages.
    • Lectures
    • Assignments and Tests
  • CSE P 501Compiler ConstructionUniversity of WashingtonLecture VideosAssignments
    • Teaches understanding of how a modern compiler is structured and the major algorithms that are used to translate code from high-level to machine language. The best way to do this is to actually build a working compiler, so there will be a significant project to implement one that translates programs written in a core subset of Java into executable x86 assembly language. The compilers themselves will use scanner and parser generator tools and the default implementation language is Java.
    • Lectures
    • Assignments, Tests, and Solutions
  • DMFPDiscrete Mathematics and Functional ProgrammingWheaton CollegeLecture VideosAssignments

Algorithms

  • CS 61BData StructuresUC BerkeleyLecture VideosAssignments
    • In this course, you will study advanced programming techniques including data structures, encapsulation, abstract data types, interfaces, and algorithms for sorting and searching, and you will get a taste of “software engineering”—the design and implementation of large programs.
    • Labs
    • Lecture Videos on Youtube
  • CS 473/573Fundamental AlgorithmsUniv of Illinois, Urbana-ChampaignAssignmentsLecture Notes
    • Algorithms class covering recursion, randomization, amortization, graph algorithms, network flows and hardness. The lecture notes by Prof. Erikson are comprehensive enough to be a book by themselves. Highly recommended!
    • Lecture Notes
    • Labs and Exams
  • CS 2150Program & Data RepresentationUniversity of VirginiaAssignmentsLecture Notes
    • This data structures course introduces C++, linked-lists, stacks, queues, trees, numerical representation, hash tables, priority queues, heaps, huffman coding, graphs, and x86 assembly.
    • Lectures
    • Assignments
  • CS 4820Introduction to Analysis of AlgorithmsCornell UniversityAssignmentsLecture NotesReadings
    • This course develops techniques used in the design and analysis of algorithms, with an emphasis on problems arising in computing applications. Example applications are drawn from systems and networks, artificial intelligence, computer vision, data mining, and computational biology. This course covers four major algorithm design techniques (greedy algorithms, divide and conquer, dynamic programming, and network flow), computability theory focusing on undecidability, computational complexity focusing on NP-completeness, and algorithmic techniques for intractable problems, including identification of structured special cases, approximation algorithms, and local search heuristics.
    • Lectures
    • Assignments
    • Syllabus
  • CSCI 104Data Structures and Object Oriented DesignAssignmentsLecture NotesUniversity of Southern California (USC)
  • CSCI 135Software Design and Analysis IAssignmentsLecture NotesCUNY Hunter College
    • It is currently an intensive introduction to program development and problem solving. Its emphasis is on the process of designing, implementing, and evaluating small-scale programs. It is not supposed to be a C++ programming course, although much of the course is spent on the details of C++. C++ is an extremely large and complex programming language with many features that interact in unexpected ways. One does not need to know even half of the language to use it well.
    • Lectures and Assignments
  • CSCI 235Software Design and Analysis IICUNY Hunter CollegeAssignmentsLecture Notes
    • Introduces algorithms for a few common problems such as sorting. Practically speaking, it furthers the students' programming skills with topics such as recursion, pointers, and exception handling, and provides a chance to improve software engineering skills and to give the students practical experience for more productive programming.
    • Lectures and Assignments
  • CSCI 335Software Design and Analysis IIIAssignmentsLecture NotesCUNY Hunter College
    • This includes the introduction of hashes, heaps, various forms of trees, and graphs. It also revisits recursion and the sorting problem from a higher perspective than was presented in the prequels. On top of this, it is intended to introduce methods of algorithmic analysis.
    • Lectures and Assignments
  • CSE 373Analysis of AlgorithmsStony Brook UniversityLecture VideosAssignmentsLecture NotesReadings
    • Prof Steven Skiena's no stranger to any student when it comes to algorithms. His seminal book has been touted by many to be best for getting that job in Google. In addition, he's also well-known for tutoring students in competitive programming competitions. If you're looking to brush up your knowledge on Algorithms, you can't go wrong with this course.
    • Lecture Videos
  • CS 97SIIntroduction to Competitive ProgrammingStanford UniversityAssignmentsLecture Notes
    • Fantastic repository of theory and practice problems across various topics for students who are interested to participate in ACM-ICPC.
    • Lectures and Assignments
  • ECS 122AAlgorithm Design and AnalysisUC DavisLecture VideosAssignmentsLecture Notes
    • Taught by Dan Gusfield in 2010, this course is an undergraduate introduction to algorithm design and analysis. It features traditional topics, such as Big Oh notation, as well as an importance on implementing specific algorithms. Also featured are sorting (in linear time), graph algorithms, depth-first search, string matching, dynamic programming, NP-completeness, approximation, and randomization.
    • Syllabus
    • Lecture Videos
    • Assignments
  • ECS 222AGraduate Level Algorithm Design and AnalysisUC DavisLecture VideosAssignmentsLecture Notes
    • This is the graduate level complement to the ECS 122A undergraduate algorithms course by Dan Gusfield in 2011. It assumes an undergrad course has already been taken in algorithms, and, while going over some undergraduate algorithms topics, focuses more on increasingly complex and advanced algorithms.
    • Lecture Videos
    • Syllabus
    • Assignments
  • 6.INTHacking a Google InterviewMITReadings
    • This course taught in the MIT Independent Activities Period in 2009 goes over common solution to common interview questions for software engineer interviews at highly selective companies like Apple, Google, and Facebook. They cover time complexity, hash tables, binary search trees, and other common algorithm topics you should have already covered in a different course, but goes more in depth on things you wouldn't otherwise learn in class- like bitwise logic and problem solving tricks.
    • Handouts
    • Topics Covered
  • 6.851Advanced Data StructuresMITLecture VideosAssignmentsLecture Notes
    • This is an advanced DS course, you must be done with the Advanced Algorithms course before attempting this one.
    • Lectures Contains videos from sp2012 version, but there isn't much difference.
    • Assignments contains the calendar as well.
  • 6.854/18.415JAdvanced AlgorithmsMITLecture VideosAssignmentsLecture Notes
    • Advanced course in algorithms by Dr. David Karger covering topics such as amortization, randomization, fingerprinting, word-level parallelism, bit scaling, dynamic programming, network flow, linear programming, fixed-parameter algorithms, and approximation algorithms.
    • Register on NB to access the problem set and lectures.
  • 15-451/651AlgorithmsCarnegie Mellon UniversityLecture Notes
    • The required algorithms class that go in depth into all basic algorithms and the proofs behind them. This is one of the heavier algorithms curriculums on this page. Taught by Avrim Blum and Manuel Blum who has a Turing Award due to his contributions to algorithms. Course link includes a very comprehensive set of reference notes by Avrim Blum.

CS Theory

  • CIS 500Software FoundationsUniversity of PennsylvaniaAssignmentsLecture Notes
    • An introduction to formal verification of software using the Coq proof assistant. Topics include basic concepts of logic, computer-assisted theorem proving, functional programming, operational semantics, Hoare logic, and static type systems.
    • Lectures and Assignments
    • Textbook
  • CS 103Mathematical Foundations of ComputingStanford UniversityAssignmentsLecture Notes
    • CS103 is a first course in discrete math, computability theory, and complexity theory. In this course, we'll probe the limits of computer power, explore why some problems are harder to solve than others, and see how to reason with mathematical certainty.
    • Links to all lectures notes and assignments are directly on the course page
  • CS 173Discrete StructuresUniv of Illinois Urbana-ChampaignAssignmentsLecture NotesReadings
    • This course is an introduction to the theoretical side of computer science. In it, you will learn how to construct proofs, read and write literate formal mathematics, get a quick introduction to key theory topics and become familiar with a range of standard mathematics concepts commonly used in computer science.
    • Textbook Written by the professor. Includes Instructor's Guide.
    • Assignments
    • Exams
  • CS 276Foundations of CryptographyUC BerkeleyLecture Notes
    • This course discusses the complexity-theory foundations of modern cryptography, and looks at recent results in the field such as Fully Homomorphic Encryption, Indistinguishability Obfuscation, MPC and so on.
  • CS 278Complexity TheoryUC BerkeleyLecture Notes
    • An graduate level course on complexity theory that introduces P vs NP, the power of randomness, average-case complexity, hardness of approximation, and so on.
  • CS 374Algorithms & Models of Computation (Fall 2014)University of Illinois Urbana-ChampaignLecture VideosAssignmentsLecture Notes
    • CS 498 section 374 (unofficially "CS 374") covers fundamental tools and techniques from theoretical computer science, including design and analysis of algorithms, formal languages and automata, computability, and complexity. Specific topics include regular and context-free languages, finite-state automata, recursive algorithms (including divide and conquer, backtracking, dynamic programming, and greedy algorithms), fundamental graph algorithms (including depth- and breadth-first search, topological sorting, minimum spanning trees, and shortest paths), undecidability, and NP-completeness. The course also has a strong focus on clear technical communication.
    • Assignments/Exams
    • Lecture Notes/Labs
    • Lecture videos
  • CS 3110Data Structures and Functional ProgrammingCornell UniversityAssignmentsLecture NotesReadings
    • CS 3110 (formerly CS 312) is the third programming course in the Computer Science curriculum, following CS 1110/1112 and CS 2110. The goal of the course is to help students become excellent programmers and software designers who can design and implement software that is elegant, efficient, and correct, and whose code can be maintained and reused.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4810Introduction to Theory of ComputingCornell UniversityAssignmentsLecture NotesReadings
    • This undergraduate course provides a broad introduction to the mathematical foundations of computer science. We will examine basic computational models, especially Turing machines. The goal is to understand what problems can or cannot be solved in these models.
    • Syllabus
    • Lectures
    • Assignments
  • CS 6810Theory of ComputingCornell UniversityAssignmentsLecture NotesReadings
    • This graduate course gives a broad introduction to complexity theory, including classical results and recent developments. Complexity theory aims to understand the power of efficient computation (when computational resources like time and space are limited). Many compelling conceptual questions arise in this context. Most of these questions are (surprisingly?) difficult and far from being resolved. Nevertheless, a lot of progress has been made toward understanding them (and also why they are difficult). We will learn about these advances in this course. A theme will be combinatorial constructions with random-like properties, e.g., expander graphs and error-correcting codes. Some examples:
      • Is finding a solution inherently more difficult than verifying it?
      • Do more computational resources mean more computing power?
      • Is it easier to find approximate solutions than exact ones?
      • Are randomized algorithms more powerful than deterministic ones?
      • Is it easier to solve problems in the average case than in the worst case?
      • Are quantum computers more powerful than classical ones?
    • Syllabus
    • Lectures
    • Assignments
  • CSCE 3193Programming ParadigmsUniversity of Arkansas (Fayetteville)AssignmentsLecture Notes
    • Programming in different paradigms with emphasis on object oriented programming, network programming and functional programming. Survey of programming languages, event driven programming, concurrency, software validation.
    • Syllabus
    • Notes
    • Assignments
    • Practice Exams
  • CS 3220Introduction to Scientific ComputingCornell UniversityAssignmentsLecture NotesReadings
    • In this one-semester survey course, we introduce numerical methods for solving linear and nonlinear equations, interpolating data, computing integrals, and solving differential equations, and we describe how to use these tools wisely (we hope!) when solving scientific problems.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4300Information RetrievalCornell UniversityAssignmentsLecture NotesReadings
    • Studies the methods used to search for and discover information in large-scale systems. The emphasis is on information retrieval applied to textual materials, but there is some discussion of other formats.The course includes techniques for searching, browsing, and filtering information and the use of classification systems and thesauruses. The techniques are illustrated with examples from web searching and digital libraries.
    • Syllabus
    • Lectures
    • Assignments
  • 6.045Great Ideas in Theoretical Computer ScienceMITLecture NotesLecture VideosReadings
    • This course provides a challenging introduction to some of the central ideas of theoretical computer science. Beginning in antiquity, the course will progress through finite automata, circuits and decision trees, Turing machines and computability, efficient algorithms and reducibility, the P versus NP problem, NP-completeness, the power of randomness, cryptography and one-way functions, computational learning theory, and quantum computing. It examines the classes of problems that can and cannot be solved by various kinds of machines. It tries to explain the key differences between computational models that affect their power.
    • Syllabus
    • Lecture Notes
    • Lecture Videos

Introduction to CS

  • CS 10The Beauty and Joy of ComputingUC BerkeleyLecture VideosAssignmentsLecture Notes
    • CS10 is UCB's introductory computer science class, taught using the beginners' drag-and-drop language. Students learn about history, social implications, great principles, and future of computing. They also learn the joy of programming a computer using a friendly, graphical language, and will complete a substantial team programming project related to their interests.
    • Snap*!* (based on Scratch by MIT).
    • Curriculum
  • CS 50Introduction to Computer ScienceHarvard UniversityLecture VideosAssignmentsLecture Notes
    • CS50x is Harvard College's introduction to the intellectual enterprises of computer science and the art of programming for majors and non-majors alike, with or without prior programming experience. An entry-level course taught by David J. Malan.
    • Lectures
  • CS 61AStructure and Interpretation of Computer ProgramsUC BerkeleyLecture VideosAssignmentsLecture Notes
    • In CS 61A, we are interested in teaching you about programming, not about how to use one particular programming language. We consider a series of techniques for controlling program complexity, such as functional programming, data abstraction, and object-oriented programming. Mastery of a particular programming language is a very useful side effect of studying these general techniques. However, our hope is that once you have learned the essence of programming, you will find that picking up a new programming language is but a few days' work.
    • Lecture Resources by Type
    • Lecture Resources by Topic
    • Additional Resources
    • Practice Problems
    • Extra Lectures
  • CS 101Computer Science 101Stanford UniversityLecture VideosAssignmentsLecture Notes
    • CS101 teaches the essential ideas of Computer Science for a zero-prior-experience audience. Participants play and experiment with short bits of "computer code" to bring to life to the power and limitations of computers.
    • Lectures videos will available for free after registration.
  • CS 106AProgramming MethodologyStanford UniversityLecture VideosAssignmentsLecture Notes
    • This course is the largest of the introductory programming courses and is one of the largest courses at Stanford. Topics focus on the introduction to the engineering of computer applications emphasizing modern software engineering principles: object-oriented design, decomposition, encapsulation, abstraction, and testing. Programming Methodology teaches the widely-used Java programming language along with good software engineering principles.
    • Lecture Videos
    • Assignments
    • All materials in a zip file
  • CS 106BProgramming AbstractionsStanford UniversityLecture VideosAssignmentsLecture Notes
    • This course is the natural successor to Programming Methodology and covers such advanced programming topics as recursion, algorithmic analysis, and data abstraction using the C++ programming language, which is similar to both C and Java.
    • Lectures
    • Assignments
    • All materials in a zip file
  • CS 107Programming ParadigmsStanford UniversityLecture VideosAssignmentsLecture Notes
    • Topics: Advanced memory management features of C and C++; the differences between imperative and object-oriented paradigms. The functional paradigm (using LISP) and concurrent programming (using C and C++)
    • Lectures
    • Assignments
  • CS 1109Fundamental Programming ConceptsCornell UniversityAssignmentsLecture Notes
    • This course provides an introduction to programming and problem solving using a high-level programming language. It is designed to increase your knowledge level to comfortably continue to courses CS111x. Our focus will be on generic programming concepts: variables, expressions, control structures, loops, arrays, functions, pseudocode and algorithms. You will learn how to analyze problems and convert your ideas into solutions interpretable by computers. We will use MATLAB; because it provides a productive environment, and it is widely used by all engineering communities.
    • Syllabus
    • Lectures
    • Assignments
  • CS 1110Introduction to Computing Using PythonCornell UniversityAssignmentsLecture NotesReadings
    • Programming and problem solving using Python. Emphasizes principles of software development, style, and testing. Topics include procedures and functions, iteration, recursion, arrays and vectors, strings, an operational model of procedure and function calls, algorithms, exceptions, object-oriented programming, and GUIs (graphical user interfaces). Weekly labs provide guided practice on the computer, with staff present to help. Assignments use graphics and GUIs to help develop fluency and understanding.
    • Syllabus
    • Lectures
    • Assignments
  • CS 1112Introduction to Computing Using MatlabCornell UniversityAssignmentsLecture NotesReadings
    • Programming and problem solving using MATLAB. Emphasizes the systematic development of algorithms and programs. Topics include iteration, functions, arrays and vectors, strings, recursion, algorithms, object-oriented programming, and MATLAB graphics. Assignments are designed to build an appreciation for complexity, dimension, fuzzy data, inexact arithmetic, randomness, simulation, and the role of approximation. NO programming experience is necessary; some knowledge of Calculus is required.
    • Syllabus
    • Lectures
    • Assignments
    • Projects
  • CS 1115Introduction to Computational Science and Engineering Using Matlab Graphical User InterfacesCornell UniversityAssignmentsLecture NotesReadings
    • Programming and problem solving using MATLAB. Emphasizes the systematic development of algorithms and programs. Topics include iteration, functions, arrays and vectors, strings, recursion, algorithms, object-oriented programming, and MATLAB graphics. Assignments are designed to build an appreciation for complexity, dimension, fuzzy data, inexact arithmetic, randomness, simulation, and the role of approximation. NO programming experience is necessary; some knowledge of Calculus is required.
    • Syllabus
    • Lectures
    • Projects
  • CS 1130Transition to OO ProgrammingCornell UniversityAssignmentsLecture NotesReadings
    • Introduction to object-oriented concepts using Java. Assumes programming knowledge in a language like MATLAB, C, C++, or Fortran. Students who have learned Java but were not exposed heavily to OO programming are welcome.
    • Syllabus
    • Lectures
    • Assignments
  • CS 1133Transition to PythonCornell UniversityAssignmentsLecture NotesReadings
    • Introduction to the Python programming language. Covers the basic programming constructs of Python, including assignment, conditionals, iteration, functions, object-oriented design, arrays, and vectorized computation. Assumes programming knowledge in a language like Java, Matlab, C, C++, or Fortran.
    • Syllabus
    • Lectures
    • Assignments
  • CS 2110Object-Oriented Programming and Data StructuresCornell UniversityAssignmentsLecture NotesReadings
    • CS 2110 is an intermediate-level programming course and an introduction to computer science. Topics include program design and development, debugging and testing, object-oriented programming, proofs of correctness, complexity analysis, recursion, commonly used data structures, graph algorithms, and abstract data types. Java is the principal programming language. The course syllabus can easily be extracted by looking at the link to lectures.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4302Web Information SystemsCornell UniversityAssignmentsLecture NotesReadings
    • This course will introduce you to technologies for building data-centric information systems on the World Wide Web, show the practical applications of such systems, and discuss their design and their social and policy context by examining cross-cutting issues such as citizen science, data journalism and open government. Course work involves lectures and readings as well as weekly homework assignments, and a semester-long project in which the students demonstrate their expertise in building data-centric Web information systems.
    • Syllabus
    • Lectures
    • Assignments
  • CSCE 2004Programming Foundations IUniversity of Arkansas (Fayetteville)AssignmentsLecture NotesReadings
    • Introductory course for students majoring in computer science or computer engineering. Software development process: problem specification, program design, implementation, testing and documentation. Programming topics: data representation, conditional and iterative statements, functions, arrays, strings, file I/O, and classes. Using C++ in a UNIX environment.
    • Syllabus
    • Notes
    • Assignments
    • Practice Exams
  • CSCE 2014Programming Foundations 2University of Arkansas (Fayetteville)AssignmentsLecture NotesReadings
    • This course continues developing problem solving techniques by focusing on fundamental data structures and associated algorithms. Topics include: abstract data types, introduction to object-oriented programming, linked lists, stacks, queues, hash tables, binary trees, graphs, recursion, and searching and sorting algorithms. Using C++ in a UNIX environment.
    • Syllabus
    • Assignments
    • Practice Exams
  • 6.001Structure and Interpretation of Computer ProgramsMITLecture VideosAssignmentsLecture Notes
    • Teaches big-picture computing concepts using the Scheme programming language. Students will implement programs in a variety of different programming paradigms (functional, object-oriented, logical). Heavy emphasis on function composition, code-as-data, control abstraction with continuations, and syntactic abstraction through macros. An excellent course if you are looking to build a mental framework on which to hang your programming knowledge.
    • Lectures
    • Textbook (epub, pdf)
    • IDE
  • CS1410-2 and CS2420-20Computer Science I and II for HackersUniversity of UtahAssignmentsLecture NotesReadings

Machine Learning

  • 11-785Deep LearningCarnegie Mellon UniversityAssignmentsReadings
    • The course presents the subject through a series of seminars and labs, which will explore it from its early beginnings, and work themselves to some of the state of the art. The seminars will cover the basics of deep learning and the underlying theory, as well as the breadth of application areas to which it has been applied, as well as the latest issues on learning from very large amounts of data. We will concentrate largely, although not entirely, on the connectionist architectures that are most commonly associated with it. Lectures and Reading Notes are available on the page.
  • 15-781Machine LearningCarnegie Mellon UniversityAssignmentsLecture NotesReadings
  • EE103Introduction to Matrix MethodsStanford UniversityAssignmentsLecture NotesReadings
    • The course covers the basics of matrices and vectors, solving linear equations, least-squares methods, and many applications. It'll cover the mathematics, but the focus will be on using matrix methods in applications such as tomography, image processing, data fitting, time series prediction, finance, and many others. EE103 is based on a book that Stephen Boyd and Lieven Vandenberghe are currently writing. Students will use a new language called Julia to do computations with matrices and vectors.
    • Lectures
    • Book
    • Assignments
    • Code
  • CS 109Data ScienceHarvard UniversityAssignmentsLecture NotesReadings
    • Learning from data in order to gain useful predictions and insights. This course introduces methods for five key facets of an investigation: data wrangling, cleaning, and sampling to get a suitable data set; data management to be able to access big data quickly and reliably; exploratory data analysis to generate hypotheses and intuition; prediction based on statistical methods such as regression and classification; and communication of results through visualization, stories, and interpretable summaries.
    • Lectures
    • Slides
    • Labs and Assignments
    • 2013 Lectures(slightly better)
  • CS 231nConvolutional Neural Networks for Visual RecognitionStanford UniversityAssignmentsLecture Notes
    • Computer Vision has become ubiquitous in our society, with applications in search, image understanding, apps, mapping, medicine, drones, and self-driving cars. This course is a deep dive into details of the deep learning architectures with a focus on learning end-to-end models for these tasks, particularly image classification. During the 10-week course, students will learn to implement, train and debug their own neural networks and gain a detailed understanding of cutting-edge research in computer vision.
    • Lecture Notes
    • Github Page
  • CS 4780Machine LearningCornell UniversityLecture NotesReadings
    • This course will introduce you to technologies for building data-centric information systems on the World Wide Web, show the practical applications of such systems, and discuss their design and their social and policy context by examining cross-cutting issues such as citizen science, data journalism and open government. Course work involves lectures and readings as well as weekly homework assignments, and a semester-long project in which the students demonstrate their expertise in building data-centric Web information systems.
    • Syllabus
    • Lectures
  • COMS 4771Machine LearningColumbia UniversityAssignmentsLecture Notes
    • Course taught by Tony Jebara introduces topics in Machine Learning for both generative and discriminative estimation. Material will include least squares methods, Gaussian distributions, linear classification, linear regression, maximum likelihood, exponential family distributions, Bayesian networks, Bayesian inference, mixture models, the EM algorithm, graphical models, hidden Markov models, support vector machines, and kernel methods.
    • Lectures and Assignments
  • CS395TStatistical and Discrete Methods for Scientific ComputingUniversity of TexasLecture VideosLecture NotesAssignments
    • Practical course in applying modern statistical techniques to real data, particularly bioinformatic data and large data sets. The emphasis is on efficient computation and concise coding, mostly in MATLAB and C++. Topics covered include probability theory and Bayesian inference; univariate distributions; Central Limit Theorem; generation of random deviates; tail (p-value) tests; multiple hypothesis correction; empirical distributions; model fitting; error estimation; contingency tables; multivariate normal distributions; phylogenetic clustering; Gaussian mixture models; EM methods; maximum likelihood estimation; Markov Chain Monte Carlo; principal component analysis; dynamic programming; hidden Markov models; performance measures for classifiers; support vector machines; Wiener filtering; wavelets; multidimensional interpolation; information theory.
    • Lectures and Assignments
  • CVX 101Convex OptimizationStanford UniversityAssignmentsLecture Notes

Readings

- The course concentrates on recognizing and solving convex optimization problems that arise in applications. Topics addressed include the following. Convex sets, functions, and optimization problems. Basics of convex analysis. Least-squares, linear and quadratic programs, semidefinite programming, minimax, extremal volume, and other problems. Optimality conditions, duality theory, theorems of alternative, and applications. Interior-point methods. Applications to signal processing, statistics and machine learning, control and mechanical engineering, digital and analog circuit design, and finance. - [Textbook](http://web.stanford.edu/~boyd/cvxbook/) - [Lectures and Assignments](https://class.stanford.edu/courses/Engineering/CVX101/Winter2014/courseware/7206c57866504e83821d00b5d3f80793/)

Misc

  • AM 207Monte Carlo Methods and Stochastic OptimizationHarvard UniversityLecture VideosLecture NotesAssignments
    • This course introduces important principles of Monte Carlo techniques and demonstrates the power of these techniques with simple (but very useful) applications. All of this in Python!
    • Lecture Videos
    • Assignments
    • Lecture Notes
  • CAP 5415Computer VisionUniversity of Central FloridaLecture VideosLecture NotesAssignments
    • An introductory level course covering the basic topics of computer vision, and introducing some fundamental approaches for computer vision research.
    • Lectures and Videos
    • Assignments
  • CIS 581Computer Vision and Computational PhotographyUniversity of PennsylvaniaAssignmentsLecture Notes
    • An introductory course in computer vision and computational photography focusing on four topics: image features, image morphing, shape matching, and image search.
    • Lectures
    • Assignments
  • CIS 4930 / CIS 5930Offensive Computer SecurityFlorida State UniversityLecture VideosAssignmentsLecture Notes
    • Course taught by W. Owen Redwood and Xiuwen Liu. It covers a wide range of computer security topics, starting from Secure C Coding and Reverse Engineering to Penetration Testing, Exploitation and Web Application Hacking, both from the defensive and the offensive point of view.
    • Lectures and Videos
    • Assignments
  • CS 75Introduction to Game DevelopmentTufts UniversityAssignmentsLecture Notes
    • The course taught by Ming Y. Chow teaches game development initially in PyGame through Python, before moving on to addressing all facets of game development. Topics addressed include game physics, sprites, animation, game development methodology, sound, testing, MMORPGs and online games, and addressing mobile development in Android, HTML5, and iOS. Most to all of the development is focused on PyGame for learning principles
    • Text Lectures
    • Assignments
    • Labs
  • CS 100Open Source Software ConstructionUC RiversideAssignmentsLecture Notes
    • This is a course on how to be a hacker. Your first four homework assignments walk you through the process of building your own unix shell. You'll be developing it as an open source project, and you will collaborate with each other at various points.
    • Github Page
    • Assignments
  • CS 193pDeveloping Applications for iOSStanford UniversityLecture VideosAssignmentsLecture Notes
    • Updated for iOS 7. Tools and APIs required to build applications for the iPhone and iPad platform using the iOS SDK. User interface designs for mobile devices and unique user interactions using multi-touch technologies. Object-oriented design using model-view-controller paradigm, memory management, Objective-C programming language. Other topics include: object-oriented database API, animation, multi-threading and performance considerations.
    • Prerequisites: C language and object-oriented programming experience
    • Recommended: Programming Abstractions
    • Updated courses for iOS8 - Swift
  • CS 223AIntroduction to RoboticsStanford UniversityLecture VideosAssignmentsLecture Notes
    • The purpose of this course is to introduce you to basics of modeling, design, planning, and control of robot systems. In essence, the material treated in this course is a brief survey of relevant results from geometry, kinematics, statics, dynamics, and control.
    • Lectures
    • Assignments
  • CS 3783D Reconstruction with Computer VisionUTexasAssignmentsLecture Notes
    • In this lab-based class, we'll dive into practical applications of 3D reconstruction, combining hardware and software to build our own 3D environments from scratch. We'll use open-source frameworks like OpenCV to do the heavy lifting, with the focus on understanding and applying state-of-the art approaches to geometric computer vision
    • Lectures
  • CS 411Software Architecture DesignBilkent UniversityLecture Videos
    • This course teaches the basic concepts, methods and techniques for designing software architectures. The topics include: rationale for software architecture design, modeling software architecture design, architectural styles/patterns, architectural requirements analysis, comparison and evaluation of architecture design methods, synthesis-based software architecture design, software product-line architectures, domain modeling, domain engineering and application engineering, software architecture implementation, evaluating software architecture designs.
  • CS 3152Introduction to Computer Game DevelopmentCornell UniversityAssignmentsLecture NotesReadings
    • A project-based course in which programmers and designers collaborate to make a computer game. This course investigates the theory and practice of developing computer games from a blend of technical, aesthetic, and cultural perspectives. Technical aspects of game architecture include software engineering, artificial intelligence, game physics, computer graphics, and networking. Aesthetic and cultural include art and modeling, sound and music, game balance, and player experience.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4152Advanced Topics in Computer Game DevelopmentCornell UniversityAssignmentsLecture NotesReadings
    • Project-based follow-up course to CS/INFO 3152. Students work in a multidisciplinary team to develop a game that incorporates innovative game technology. Advanced topics include 3D game development, mobile platforms, multiplayer gaming, and nontraditional input devices. There is a special emphasis on developing games that can be submitted to festivals and competitions, or that can be commercialized.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4154Analytics-driven Game DesignCornell UniversityAssignmentsLecture NotesReadings
    • A project-based course in which programmers and designers collaborate to design, implement, and release a video game online through popular game portals. In this course, students will use the internet to gather data anonymously from players. Students will analyze this data in order to improve their game over multiple iterations. Technical aspects of this course include programming, database architecture, and statistical analysis.
    • Syllabus
    • Lectures
    • Assignments
  • CS 4620Introduction to Computer GraphicsCornell UniversityAssignmentsLecture NotesReadings
    • The study of creating, manipulating, and using visual images in the computer.
    • Assignments
    • Exams
  • CS 4670Introduction to Computer VisionCornell UniversityAssignmentsLecture NotesReadings
    • This course will provide an introduction to computer vision, with topics including image formation, feature detection, motion estimation, image mosaics, 3D shape reconstruction, and object and face detection and recognition. Applications of these techniques include building 3D maps, creating virtual characters, organizing photo and video databases, human computer interaction, video surveillance, automatic vehicle navigation, and mobile computer vision. This is a project-based course, in which you will implement several computer vision algorithms throughout the semester.
    • Assignments
    • Lectures
  • CS 4700Foundations of Artificial IntelligenceCornell UniversityAssignmentsLecture Notes
    • This course will provide an introduction to computer vision, with topics including image formation, feature detection, motion estimation, image mosaics, 3D shape reconstruction, and object and face detection and recognition. Applications of these techniques include building 3D maps, creating virtual characters, organizing photo and video databases, human computer interaction, video surveillance, automatic vehicle navigation, and mobile computer vision. This is a project-based course, in which you will implement several computer vision algorithms throughout the semester.
    • Assignments
    • Lectures
  • CS 4786Machine Learning for Data ScienceCornell UniversityAssignmentsLecture NotesReadings
    • An introductory course in machine learning, with a focus on data modeling and related methods and learning algorithms for data sciences. Tentative topic list:
      • Dimensionality reduction, such as principal component analysis (PCA) and the singular value decomposition (SVD), canonical correlation analysis (CCA), independent component analysis (ICA), compressed sensing, random projection, the information bottleneck. (We expect to cover some, but probably not all, of these topics).
      • Clustering, such as k-means, Gaussian mixture models, the expectation-maximization (EM) algorithm, link-based clustering. (We do not expect to cover hierarchical or spectral clustering.).
      • Probabilistic-modeling topics such as graphical models, latent-variable models, inference (e.g., belief propagation), parameter learning.
      • Regression will be covered if time permits.
    • Assignments
    • Lectures
  • CS 4812Quantum Information ProcessingCornell UniversityLecture NotesReadings
    • Hardware that exploits quantum phenomena can dramatically alter the nature of computation. Though constructing a working quantum computer is a formidable technological challenge, there has been much recent experimental progress. In addition, the theory of quantum computation is of interest in itself, offering strikingly different perspectives on the nature of computation and information, as well as providing novel insights into the conceptual puzzles posed by the quantum theory. The course is intended both for physicists, unfamiliar with computational complexity theory or cryptography, and also for computer scientists and mathematicians, unfamiliar with quantum mechanics. The prerequisites are familiarity (and comfort) with finite dimensional vector spaces over the complex numbers, some standard group theory, and ability to count in binary.
    • Syllabus
    • Lectures
  • CS 4860Applied LogicCornell UniversityAssignmentsLecture Notes
    • In addition to basic first-order logic, when taught by Computer Science this course involves elements of Formal Methods and Automated Reasoning. Formal Methods is concerned with proving properties of algorithms, specifying programming tasks and synthesizing programs from proofs. We will use formal methods tools such as interactive proof assistants (see www.nuprl.org). We will also spend two weeks on constructive type theory, the language used by the Coq and Nuprl proof assistants.
    • Syllabus
    • Lectures
    • Assignments
  • CS 5150Software EngineeringCornell UniversityAssignmentsLecture NotesReadings
    • Introduction to the practical problems of specifying, designing, building, testing, and delivering reliable software systems
    • Lectures
    • Assignments
  • CS 5220Applications of Parallel ComputersCornell UniversityAssignmentsLecture NotesReadings
    • How do we solve the large-scale problems of science quickly on modern computers? How do we measure the performance of new or existing simulation codes, and what things can we do to make them run faster? How can we best take advantage of features like multicore processors, vector units, and graphics co-processors? These are the types of questions we will address in CS 5220, Applications of Parallel Computers. Topics include:
      • Single-processor architecture, caches, and serial performance tuning
      • Basics of parallel machine organization
      • Distributed memory programming with MPI
      • Shared memory programming with OpenMP
      • Parallel patterns: data partitioning, synchronization, and load balancing
      • Examples of parallel numerical algorithms
      • Applications from science and engineering
    • Lectures
    • Assignments
  • CS 5430System SecurityCornell UniversityAssignmentsLecture NotesReadings
    • This course discusses security for computers and networked information systems. We focus on abstractions, principles, and defenses for implementing military as well as commercial-grade secure systems.
    • Syllabus
    • Lectures
    • Assignments
  • CS 5540Computational Techniques for Analyzing Clinical DataCornell UniversityAssignmentsLecture NotesReadings
    • CS5540 is a masters-level course that covers a wide range of clinical problems and their associated computational challenges. The practice of medicine is filled with digitally accessible information about patients, ranging from EKG readings to MRI images to electronic health records. This poses a huge opportunity for computer tools that make sense out of this data. Computation tools can be used to answer seemingly straightforward questions about a single patient's test results (“Does this patient have a normal heart rhythm?”), or to address vital questions about large populations (“Is there any clinical condition that affects the risks of Alzheimer”). In CS5540 we will look at many of the most important sources of clinical data and discuss the basic computational techniques used for their analysis, ranging in sophistication from current clinical practice to state-of-the-art research projects.
    • Syllabus
    • Lectures
    • Assignments
  • CS 5724Evolutionary ComputationCornell UniversityAssignmentsLecture Notes
    • This course will cover advanced topics in evolutionary algorithms and their application to open-ended computational design. The field of evolutionary computation tries to address large-scale optimization and planning problems through stochastic population-based methods. It draws inspiration from evolutionary processes in nature and in engineering, and also serves as abstract models for these phenomena. Evolutionary processes are generally weak methods that require little information about the problem domain and hence can be applied across a wide variety of applications. They are especially useful for open-ended problem domains for which little formal knowledge exists and the number of parameters is undefined, such as for the general engineering design process. This course will provide insight to a variety of evolutionary computation paradigms, such as genetic algorithms, genetic programming, and evolutionary strategies, as well as governing dynamics of co-evolution, arms races and mediocre stable states. New methods involving symbiosis models and pattern recognition will also be presented. The material will be intertwined with discussions of representations and results for design problems in a variety of problem domains including software, electronics, and mechanics.
    • Syllabus
    • Lectures
    • Assignments
  • CS 6452Evolutionary ComputationCornell UniversityLecture Notes
    • CS6452 focuses on datacenter networks and services. The emerging demand for web services and cloud computing have created need for large scale data centers. The hardware and software infrastructure for datacenters critically determines the functionality, performance, cost and failure tolerance of applications running on that datacenter. This course will examine design alternatives for both the hardware (networking) infrastructure, and the software infrastructure for datacenters.
    • Syllabus
    • Lectures
  • CS 6630Realistic Image SynthesisCornell UniversityAssignmentsLecture NotesReadings
    • This course will cover advanced topics in evolutionary algorithms and their application to open-ended computational design. The field of evolutionary computation tries to address large-scale optimization and planning problems through stochastic population-based methods. It draws inspiration from evolutionary processes in nature and in engineering, and also serves as abstract models for these phenomena. Evolutionary processes are generally weak methods that require little information about the problem domain and hence can be applied across a wide variety of applications. They are especially useful for open-ended problem domains for which little formal knowledge exists and the number of parameters is undefined, such as for the general engineering design process. This course will provide insight to a variety of evolutionary computation paradigms, such as genetic algorithms, genetic programming, and evolutionary strategies, as well as governing dynamics of co-evolution, arms races and mediocre stable states. New methods involving symbiosis models and pattern recognition will also be presented. The material will be intertwined with discussions of representations and results for design problems in a variety of problem domains including software, electronics, and mechanics.
    • Syllabus
    • Lectures
    • Assignments
    • Readings
  • CS 6640Realistic Image SynthesisCornell UniversityAssignmentsLecture Notes
    • A course on the emerging applications of computation in photography. Likely topics include digital photography, unconventional cameras and optics, light field cameras, image processing for photography, techniques for combining multiple images, advanced image editing algorithms, and projector-camera systems.cornell.edu/courses/CS6630/2012sp/about.stm)
    • Lectures
    • Assignments
  • CS 6650Computational MotionCornell UniversityReadings
    • Covers computational aspects of motion, broadly construed. Topics include the computer representation, modeling, analysis, and simulation of motion, and its relationship to various areas, including computational geometry, mesh generation, physical simulation, computer animation, robotics, biology, computer vision, acoustics, and spatio-temporal databases. Students implement several of the algorithms covered in the course and complete a final project. This offering will also explore the special role of motion processing in physically based sound rendering.
  • CS 6670Computer VisionCornell UniversityAssignmentsLecture Notes
    • Introduction to computer vision. Topics include edge detection, image segmentation, stereopsis, motion and optical flow, image mosaics, 3D shape reconstruction, and object recognition. Students are required to implement several of the algorithms covered in the course and complete a final project.
    • Syllabus
    • Lectures
    • Assignments
  • CS 6700Advanced Artificial IntelligenceCornell UniversityLecture NotesReadings
    • The design of systems that are among top 10 performers in the world (human, computer, or hybrid human-computer).
    • Syllabus
    • Lectures
    • Readings
  • CS 6840Algorithmic Game TheoryCornell UniversityAssignmentsLecture NotesReadings
    • Algorithmic Game Theory combines algorithmic thinking with game-theoretic, or, more generally, economic concepts. The course will study a range of topics at this interface
    • Syllabus
    • Lectures
    • Assignments
    • Readings
  • CSE 154Web ProgrammingUniversity of WashingtonAssignmentsLecture Notes
    • This course is an introduction to programming for the World Wide Web. Covers use of HTML, CSS, PHP, JavaScript, AJAX, and SQL.
    • Lectures
    • Assignments
  • EECS 588Computer & Network SecurityUniversity of MichiganLecture NotesReadings
    • Taught by J. Alex Halderman who has analyzed the security of Electronic Voting Machines in the US and overseas.
    • This intensive research seminar covers foundational work and current topics in computer systems security.
    • Readings
  • ESM 296-4FGIS & Spatial AnalysisUC Santa BarbaraAssignmentsLecture Notes
    • Taught by James Frew, Ben Best, and Lisa Wedding
    • Focuses on specific computational languages (e.g., Python, R, shell) and tools (e.g., GDAL/OGR, InVEST, MGET, ModelBuilder) applied to the spatial analysis of environmental problems
    • GitHub (includes lecture materials and labs)
  • ICS 314Software EngineeringUniversity of HawaiiAssignmentsLecture NotesReadings
  • IGME 582Humanitarian Free & Open Source Software DevelopmentRochester Institute of TechnologyAssignmentsLecture Notes
    • This course provides students with exposure to the design, creation and production of Open Source Software projects. Students will be introduced to the historic intersections of technology and intellectual property rights and will become familiar with Open Source development processes, tools and practices.
  • I485 / H400Biologically Inspired ComputationIndiana UniversityAssignmentsLecture Notes
    • Course taught by Luis Rocha about the multi-disciplinary field algorithms inspired by naturally occurring phenomenon. This course provides introduces the following areas: L-systems, Cellular Automata, Emergence, Genetic Algorithms, Swarm Intelligence and Artificial Immune Systems. It's aim is to cover the fundamentals and enable readers to build up a proficiency in applying various algorithms to real-world problems.
    • Lectures
    • Assignments
  • Open Sourced Elective: Database and RailsIntro to Ruby on RailsUniversity of TexasLecture VideosAssignmentsLecture Notes
    • An introductory course in Ruby on Rails open sourced by University of Texas' CS Adjunct Professor, Richard Schneeman.
    • Lectures
    • Assignments
    • Videos
  • Info 290Analyzing Big Data with TwitterUC Berkeley school of informationLecture Videos
    • In this course, UC Berkeley professors and Twitter engineers provide lectures on the most cutting-edge algorithms and software tools for data analytics as applied to Twitter's data. Topics include applied natural language processing algorithms such as sentiment analysis, large scale anomaly detection, real-time search, information diffusion and outbreak detection, trend detection in social streams, recommendation algorithms, and advanced frameworks for distributed computing.
    • Lecture Videos
    • Previous Years coursepage
  • CS294Cutting-edge Web TechnologiesBerkeleyAssignmentsReadingsLecture Notes
    • Want to learn what makes future web technologies tick? Join us for the class where we will dive into the internals of many of the newest web technologies, analyze and dissect them. We will conduct survey lectures to provide the background and overview of the area as well as invite guest lecturers from various leading projects to present their technologies.
  • EECS E6893 & EECS E6895Big Data Analytics & Advanced Big Data AnalyticsColumbia UniversityAssignmentsReadingsLecture Notes
    • Students will gain knowledge on analyzing Big Data. It serves as an introductory course for graduate students who are expecting to face Big Data storage, processing, analysis, visualization, and application issues on both workplaces and research environments.
    • Taught by Dr. Ching-Yung Lin
    • Course Site
    • Assignments - Assignments are present in the Course Slides
  • 6.858Computer Systems SecurityMITLecture VideosLecture NotesAssignmentsReadings
    • Design and implementation of secure computer systems. Lectures cover threat models, attacks that compromise security, and techniques for achieving security, based on recent research papers. Topics include operating system (OS) security, capabilities, information flow control, language security, network protocols, hardware security, and security in web applications.
    • Taught by James Mickens and Nickolai Zeldovich
    • Video Lectures and Labs
    • Quizzes
    • Readings
    • Final Projects
  • 14-740Fundamentals of Computer NetworksCMULecture VideosAssignmentsReadingsLecture Notes
    • This is an introductory course on Networking for graduate students. It follows a top-down approach to teaching Computer Networks, so it starts with the Application layer which most of the students are familiar with and as the course unravels we learn more about transport, network and link layers of the protocol stack.
    • As far as prerequisites are concerned - basic computer, programming and probability theory background is required.
    • The course site contains links to the lecture videos, reading material and assignments.

About

List of awesome university courses for learning Computer Science!

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published