Skip to content

Repository files navigation

Open Source Society University (OSSU)

Open Source Society University

Path to a free self-taught education in Computer Science!

AwesomeOpen Source Society University - Computer Science

Contents

Summary

The OSSU curriculum is a complete education in computer science using online materials. It's not merely for career training or professional development. It's for those who want a proper, well-rounded grounding in concepts fundamental to all computing disciplines, and for those who have the discipline, will, and (most importantly!) good habits to obtain this education largely on their own, but with support from a worldwide community of fellow learners.

It is designed according to the degree requirements of undergraduate computer science majors, minus general education (non-CS) requirements, as it is assumed most of the people following this curriculum are already educated outside the field of CS. The courses themselves are among the very best in the world, often coming from Harvard, Princeton, MIT, etc., but specifically chosen to meet the following criteria.

Courses must:

  • Be open for enrollment
  • Run regularly (ideally in self-paced format, otherwise running multiple times per year)
  • Be of generally high quality in teaching materials and pedagogical principles
  • Match the curricular standards of the CS 2013: Curriculum Guidelines for Undergraduate Degree Programs in Computer Science

When no course meets the above criteria, the coursework is supplemented with a book. When there are courses or books that don't fit into the curriculum but are otherwise of high quality, they belong in extras/courses or extras/readings.

Organization. The curriculum is designed as follows:

  • Intro CS: for students to try out CS and see if it's right for them
  • Core CS: corresponds roughly to the first three years of a computer science curriculum, taking classes that all majors would be required to take
  • Advanced CS: corresponds roughly to the final year of a computer science curriculum, taking electives according to the student's interests
  • Final Project: a project for students to validate, consolidate, and display their knowledge, to be evaluated by their peers worldwide

Duration. It is possible to finish Core CS within about 2 years if you plan carefully and devote roughly 18-22 hours/week to your studies. Courses in Core CS should be taken linearly if possible, but since a perfectly linear progression is rarely possible, each class's prerequisites are specified so that you can design a logical but non-linear progression based on the class schedules and your own life plans.

Cost. All or nearly all course material is available for free. However, some courses may charge money for assignments/tests/projects to be graded. Note that Coursera offers financial aid.

Decide how much or how little to spend based on your own time and budget; just remember that you can't purchase success!

Process. Students can work through the curriculum alone or in groups, in order or out of order.

  • For grouping up, please use the cohorts repository to find or create a cohort suited to you.
  • We recommend doing all courses in Core CS, only skipping a course when you are certain that you've already learned the material previously.
  • For simplicity, we recommend working through courses (especially Core CS) in order from top to bottom, as they have already been topologically sorted by their prerequisites.
  • Courses in Advanced CS are electives. Choose one subject (e.g. Advanced programming) you want to become an expert in and take all the courses under that heading. You can also create your own custom subject, but we recommend getting validation from the community on the subject you choose.

Content policy. If you plan on showing off some of your coursework publicly, you must share only files that you are allowed to. Do NOT disrespect the code of conduct that you signed in the beginning of each course!

How to contribute

Getting help (Details about our FAQ and chatroom)

Community

  • We have a chat room! This should be your first stop to talk with other OSSU students. Why don't you introduce yourself right now? Join the chat in GitterJoin the chat at https://gitter.im/open-source-society/computer-science
  • You can also interact through GitHub issues. If there is a problem with a course, or a change needs to be made to the curriculum, this is the place to start the conversation. Read more here.
  • Add Open Source Society University to your Linkedin profile!
  • Note: There is an unmaintained and deprecated firebase app that you might find when searching OSSU. You can safely ignore it. Read more in the FAQ.

Curriculum

Curriculum version: 8.0.0 (see CHANGELOG)


Prerequisites

  • Core CS assumes the student has already taken high school math, including algebra, geometry, and pre-calculus.
  • Advanced CS assumes the student has already taken the entirety of Core CS and is knowledgeable enough now to decide which electives to take.
  • Note that Advanced systems assumes the student has taken a basic physics course (e.g. AP Physics in high school).

Intro CS

Introduction to Programming

If you've never written a for-loop, or don't know what a string is in programming, start here. Choose one of the two course series below. Either one will give you an introduction to programming that assumes no prior knowledge. You can audit either for free, in order to do so, click through to the individual courses in the specializations.

Trying to decide between them?

Python for Everyone will introduce you to a popular language and will quickly move to practical programming tasks - using web APIs and databases. This will give you a taste of what many professional developers do.

Fundamentals of Computing will also start by introducing you to Python. It then moves on to give an introduction to academic Computer Science topics, like sorting and recursion. This will give you a taste of what the following courses will be like. (Students who complete Fundamentals of Computing can skip Intro to Computer Science and begin Introduction to CS Tools.)

Topics covered: simple programssimple data structures

CoursesEffortPrerequisites
Python for Everyone (alt)58 hoursnone
Fundamentals of Computing138 hourshigh school mathematics

Introduction to Computer Science

This course will introduce you to the world of computer science. Students who have been introduced to programming, either from the courses above or through study elsewhere, should take this course for a flavor of the material to come. If you finish the course wanting more, Computer Science is likely for you!

Topics covered: computationimperative programmingbasic data structures and algorithmsand more

CoursesDurationEffortPrerequisites
Introduction to Computer Science and Programming using Python (alt)9 weeks15 hours/weekhigh school algebra

Introduction to CS Tools

Understanding theory is important, but you will also be expected to create programs. There are a number of tools that are widely used to make that process easier. Learn them now to ease your future work writing programs.

Topics covered: terminals and shell scriptingvimcommand line environmentsversion controland more

CoursesDurationEffortPrerequisites
The Missing Semester of Your CS Education2 weeks12 hours/week-

Core CS

All coursework under Core CS is required, unless otherwise indicated.

Core programming

Topics covered: functional programmingdesign for testingprogram requirementscommon design patternsunit testingobject-oriented designJavastatic typingdynamic typingML-family languages (via Standard ML)Lisp-family languages (via Racket)Rubyand more

The How to Code courses are based on the textbook How to Design Programs. The First Edition is available for free online and includes problem sets and solutions. Students are encouraged to do these assignments.

CoursesDurationEffortPrerequisites
How to Code - Simple Data7 weeks8-10 hours/weeknone
How to Code - Complex Data6 weeks8-10 hours/weekHow to Code: Simple Data
Programming Languages, Part A5 weeks4-8 hours/weekHow to Code (Hear instructor)
Programming Languages, Part B3 weeks4-8 hours/weekProgramming Languages, Part A
Programming Languages, Part C3 weeks4-8 hours/weekProgramming Languages, Part B

Math Electives

Students must choose one of the following topics: calculus, linear algebra, logic, or probability.

Calculus

CoursesDurationEffortPrerequisites
Calculus 1A: Differentiation13 weeks6-10 hours/weekpre-calculus
Calculus 1B: Integration13 weeks5-10 hours/weekCalculus 1A
Calculus 1C: Coordinate Systems & Infinite Series6 weeks5-10 hours/weekCalculus 1B

Linear Algebra

CoursesDurationEffortPrerequisites
Essence of Linear Algebra--pre-calculus
Linear Algebra14 weeks12 hours/weekEssence of Linear Algebra

Logic

CoursesDurationEffortPrerequisites
Introduction to Logic10 weeks4-8 hours/weekset theory

Probability

CoursesDurationEffortPrerequisites
Introduction to Probability - The Science of Uncertainty18 weeks12 hours/weekMultivariable Calculus

Core Math

In addition to their math elective, students must complete the following course on discrete mathematics.

Topics covered: discrete mathematicsmathematical proofsbasic statisticsO-notationdiscrete probabilityand more

CoursesDurationEffortNotesPrerequisites
Mathematics for Computer Science13 weeks5 hours/weekAn alternate version with solutions to the problem sets is here. Students struggling can consider the Discrete Mathematics Specialization first. It is more interactive but less comprehensive, and costs money to unlock full interactivity.Calculus 1C

Core systems

Topics covered: procedural programmingmanual memory managementboolean algebragate logicmemorycomputer architectureassemblymachine languagevirtual machineshigh-level languagescompilersoperating systemsnetwork protocolsand more

CoursesDurationEffortAdditional Text / AssignmentsPrerequisites
Introduction to Computer Science - CS50 (alt)12 weeks10-20 hours/weekAfter the sections on C, skip to the next course. Why?introductory programming
Build a Modern Computer from First Principles: From Nand to Tetris (alt)6 weeks7-13 hours/week-C-like programming language
Build a Modern Computer from First Principles: Nand to Tetris Part II 6 weeks12-18 hours/week-one of these programming languages, From Nand to Tetris Part I
Introduction to Computer Networking8 weeks4–12 hours/weekAssignment 1
Assignment 2
Assignment 3
Assignment 4
algebra, probability, basic CS
Operating Systems: Three Easy Pieces10-12 weeks6 hours/weekHomeworkLecturesSupplementalgorithms

Core theory

Topics covered: divide and conquersorting and searchingrandomized algorithmsgraph searchshortest pathsdata structuresgreedy algorithmsminimum spanning treesdynamic programmingNP-completenessand more

CoursesDurationEffortPrerequisites
Divide and Conquer, Sorting and Searching, and Randomized Algorithms4 weeks4-8 hours/weekany programming language, Mathematics for Computer Science
Graph Search, Shortest Paths, and Data Structures4 weeks4-8 hours/weekDivide and Conquer, Sorting and Searching, and Randomized Algorithms
Greedy Algorithms, Minimum Spanning Trees, and Dynamic Programming4 weeks4-8 hours/weekGraph Search, Shortest Paths, and Data Structures
Shortest Paths Revisited, NP-Complete Problems and What To Do About Them4 weeks4-8 hours/weekGreedy Algorithms, Minimum Spanning Trees, and Dynamic Programming

Core Security

Topics coveredConfidentiality, Integrity, AvailabilitySecure DesignDefensive ProgrammingThreats and AttacksNetwork SecurityCryptographyand more

Note: These courses are provisionally recommended. There is an open Request For Comment on security course selection. Contributors are encouraged to compare the various courses in the RFC and offer feedback.

CoursesDurationEffortPrerequisites
Information Security: Context and Introduction5 weeks3 hours/week-
Principles of Secure Coding4 weeks4 hours/week-
Identifying Security Vulnerabilities4 weeks4 hours/week-

Choose one of the following:

CoursesDurationEffortPrerequisites
Identifying Security Vulnerabilities in C/C++Programming4 weeks5 hours/week-
Exploiting and Securing Vulnerabilities in Java Applications4 weeks5 hours/week-

Core applications

Topics covered: Agile methodologyRESTsoftware specificationsrefactoringrelational databasestransaction processingdata modelingneural networkssupervised learningunsupervised learningOpenGLraytracingand more

CoursesDurationEffortPrerequisites
Relational Database Systems6 weeks3 hours/week-
Machine Learning11 weeks4-6 hours/weeklinear algebra
Computer Graphics6 weeks12 hours/weekC++ or Java, linear algebra
Software Engineering: Introduction6 weeks8-10 hours/weekCore Programming, and a sizable project
Software Development Capstone Project6-7 weeks8-10 hours/weekSoftware Engineering: Introduction

Advanced CS

After completing every required course in Core CS, students should choose a subset of courses from Advanced CS based on interest. Not every course from a subcategory needs to be taken. But students should take every course that is relevant to the field they intend to go into.

The Advanced CS study should then end with one of the Specializations under Advanced applications. A Specialization's Capstone, if taken, may act as the Final project, if permitted by the Honor Code of the course. If not, or if a student chooses not to take the Capstone, then a separate Final project will need to be done to complete this curriculum.

Advanced programming

Topics covered: debugging theory and practicegoal-oriented programmingGPU programmingCUDAparallel computingobject-oriented analysis and designUMLlarge-scale software architecture and designand more

CoursesDurationEffortPrerequisites
Introduction to Parallel Programming (alt) (HW)12 weeks-C, algorithms
Compilers (alt)9 weeks6-8 hours/weeknone
Introduction to Haskell14 weeks--
Learn Prolog Now!12 weeks--
Software Debugging8 weeks6 hours/weekPython, object-oriented programming
Software Testing4 weeks6 hours/weekPython, programming experience
LAFF - On Programming for Correctness7 weeks6 hours/weeklinear algebra
Software Architecture & Design8 weeks6 hours/weeksoftware engineering in Java

Advanced systems

Topics covered: digital signalingcombinational logicCMOS technologiessequential logicfinite state machinesprocessor instruction setscachespipeliningvirtualizationparallel processingvirtual memorysynchronization primitivessystem call interfaceand more

CoursesDurationEffortPrerequisites
Electricity and Magnetism, Part 117 weeks8-10 hours/weekcalculus, basic mechanics
Electricity and Magnetism, Part 27 weeks8-10 hours/weekElectricity and Magnetism, Part 1
Computation Structures 1: Digital Circuits10 weeks6 hours/weekelectricity, magnetism
Computation Structures 2: Computer Architecture10 weeks6 hours/weekComputation Structures 1
Computation Structures 3: Computer Organization10 weeks6 hours/weekComputation Structures 2

1 Note: These courses assume knowledge of basic physics. (Why?) If you are struggling, you can find a physics MOOC or utilize the materials from Khan Academy: Khan Academy - Physics

Advanced theory

Topics covered: formal languagesTuring machinescomputabilityevent-driven concurrencyautomatadistributed shared memoryconsensus algorithmsstate machine replicationcomputational geometry theorypropositional logicrelational logicHerbrand logicconcept latticesgame treesand more

CoursesDurationEffortPrerequisites
Theory of Computation (Lectures)8 weeks10 hours/weekdiscrete mathematics, logic, algorithms
Computational Geometry16 weeks8 hours/weekalgorithms, C++
Introduction to Formal Concept Analysis6 weeks4-6 hours/weeklogic, probability
Game Theory8 weeks3 hours/weekmathematical thinking, probability, calculus

Advanced applications

These Coursera Specializations all end with a Capstone project. Depending on the course, you may be able to utilize the Capstone as your Final Project for this Computer Science curriculum. Note that doing a Specialization with the Capstone at the end always costs money. So if you don't wish to spend money or use the Capstone as your Final, it may be possible to take the courses in the Specialization for free by manually searching for them, but not all allow this.

CoursesDurationEffortPrerequisites
Modern Robotics (Specialization)26 weeks2-5 hours/weekfreshman-level physics, linear algebra, calculus, linear ordinary differential equations
Data Mining (Specialization)30 weeks2-5 hours/weekmachine learning
Big Data (Specialization)30 weeks3-5 hours/weeknone
Internet of Things (Specialization)30 weeks1-5 hours/weekstrong programming
Cloud Computing (Specialization)30 weeks2-6 hours/weekC++ programming
Full Stack Web Development (Specialization)27 weeks2-6 hours/weekprogramming, databases
Data Science (Specialization)43 weeks1-6 hours/weeknone
Functional Programming in Scala (Specialization)29 weeks4-5 hours/weekOne year programming experience
Game Design and Development (Specialization)6 months5 hours/weekprogramming, interactive design

Final project

OSS University is project-focused. You are encouraged to do the assignments and exams for each course, but what really matters is whether you can use your knowledge to solve a real-world problem.

After you've gotten through all of Core CS and the parts of Advanced CS relevant to you, you should think about a problem that you can solve using the knowledge you've acquired. Not only does real project work look great on a resume, but the project will also validate and consolidate your knowledge. You can create something entirely new, or you can find an existing project that needs help via websites like CodeTriage or First Timers Only.

Another option is using the Capstone project from taking one of the Specializations in Advanced applications; whether or not this makes sense depends on the course, the project, and whether or not the course's Honor Code permits you to display your work publicly. In some cases, it may not be permitted; do not violate your course's Honor Code!

Put the OSSU-CS badge in the README of your repository! Open Source Society University - Computer Science

  • Markdown: [![Open Source Society University - Computer Science](https://img.shields.io/badge/OSSU-computer--science-blue.svg)](https://github.com/ossu/computer-science)
  • HTML: <a href="https://github.com/ossu/computer-science"><img alt="Open Source Society University - Computer Science" src="https://img.shields.io/badge/OSSU-computer--science-blue.svg"></a>

Evaluation

Upon completing your final project, submit your project's information to PROJECTS via a pull request and use our community channels to announce it to your fellow students.

Your peers and mentors from OSSU will then informally evaluate your project. You will not be "graded" in the traditional sense — everyone has their own measurements for what they consider a success. The purpose of the evaluation is to act as your first announcement to the world that you are a computer scientist and to get experience listening to feedback — both positive and negative — and taking it in stride.

The final project evaluation has a second purpose: to evaluate whether OSSU, through its community and curriculum, is successful in its mission to guide independent learners in obtaining a world-class computer science education.

Cooperative work

You can create this project alone or with other students! We love cooperative work! Use our channels to communicate with other fellows to combine and create new projects!

Which programming languages should I use?

My friend, here is the best part of liberty! You can use any language that you want to complete the final project.

The important thing is to internalize the core concepts and to be able to use them with whatever tool (programming language) that you wish.

Congratulations

After completing the requirements of the curriculum above, you will have completed the equivalent of a full bachelor's degree in Computer Science. Congratulations!

What is next for you? The possibilities are boundless and overlapping:

  • Look for a job as a developer!
  • Check out the readings for classic books you can read that will sharpen your skills and expand your knowledge.
  • Join a local developer meetup (e.g. via meetup.com).
  • Pay attention to emerging technologies in the world of software development:
    • Explore the actor model through Elixir, a new functional programming language for the web based on the battle-tested Erlang Virtual Machine!
    • Explore borrowing and lifetimes through Rust, a systems language which achieves memory- and thread-safety without a garbage collector!
    • Explore dependent type systems through Idris, a new Haskell-inspired language with unprecedented support for type-driven development.

keep learning

Code of conduct

OSSU's code of conduct.

How to show your progress

  1. Create an account in Trello.
  2. Copy this board to your personal account. See how to copy a board here.

Now that you have a copy of our official board, you just need to pass the cards to the Doing column or Done column as you progress in your study.

We also have labels to help you have more control through the process. The meaning of each of these labels is:

  • Main Curriculum: cards with that label represent courses that are listed in our curriculum.
  • Extra Resources: cards with that label represent courses that were added by the student.
  • Doing: cards with that label represent courses the student is current doing.
  • Done: cards with that label represent courses finished by the student. Those cards should also have the link for at least one project/article built with the knowledge acquired in such course.
  • Section: cards with that label represent the section that we have in our curriculum. Those cards with the Section label are only to help the organization of the Done column. You should put the Course's cards below its respective Section's card.

The intention of this board is to provide our students a way to track their progress, and also the ability to show their progress through a public page for friends, family, employers, etc. You can change the status of your board to be public or private.

Team

About

🎓 Path to a free self-taught education in Computer Science!

Resources

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors