All Projects â†’ theRoughCode â†’ WatsMyMajor

theRoughCode / WatsMyMajor

Licence: MIT license
🎓A web app to help you determine your major/minor.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to WatsMyMajor

Jobfunnel
Scrape job websites into a single spreadsheet with no duplicates.
Stars: ✭ 1,528 (+4829.03%)
Mutual labels:  waterloo

WatsMyMajor logo

This project was inspired when I was considering doing a double major in Mathematical Physics and Computer Science at the University of Waterloo. To plan it out, I had to create a giant spreadsheet in Google Sheets and see if I could fulfill the requirements for both majors while still graduating on time. Here's a screenshot of a part of it:

logo

After all the effort, it turned out that it was definitely not possible, even if I took 6 courses every term till I graduate. This is an issue that almost every student faces (unless you have all your courses planned out for you cough Engineering kids cough). I've even met a TA who had to stay back one term because he did not meet a requirement to graduate! I find it crazy that students who are already paying tuition fees have such a difficult time planning out their courses and majors.

After this feat, I realized that a lot of what I was doing in Google Sheets was repetitive and automatable. That meant that I could write a program to do it for me. And thus, WatsMyMajor was born.

What It Does

WatsMyMajor is a web app that assists University of Waterloo students in planning their courses.

Viewing Courses

logo

The most accessible feature is viewing courses. This is done by typing a course in the search bar. This page provides a summary of the course, including: - subject & catalog number - title of course - terms offered - description of course - whether you're eligible for the course - ability to add the course to your cart - current term's class list - clicking on a row in the class list will open up an expanded view where more information about the availability of the class is shown, together with any stats about the instructor teaching that class. - requisites. This includes: - Prerequisites: courses you need to take before you can take this course - Corequisites: courses you need to take before or at the same time as this course - Antirequisites: courses that you cannot have already taken - Postrequisites: courses that require this course as a prerequisite - requisite tree - This provides a tree view of the course and its prerequisites, recursively. This will be explained below at [Requisite Tree](#requisite-tree).

Requisite Tree

logo

The requisite tree provides a neat and cool way to visualize which courses are required to take a certain course. If the user has their courses filled out, it will highlight taken courses in green. The user can also toggle "Simplified View" on, which parses the tree via depth-first traversal and figures out which nodes can be taken out of three depending on courses the user has already taken. In effect, it "simplifies" the tree down to just the information *you* need to know.

My Courses

logo

This is the main sauce that binds the app together. This is the feature that brings the other features to their full potential. This page manages your courses and allows you to plan out your entire university career. It functions by drag-and-drop, which makes sense because I drew my inspiration from exactly how I was doing it in Google Sheets: dragging and dropping while I rearranged and planned my schedule. It has the following features: - Add term: Adds a term board which you can fill out with courses - Cart: Contains miscellaneous courses that you haven't decided where to put in yet - Adding courses to a term: there are 3 ways to do this 1. Drag from cart 2. Add a course by clicking on the "Plus button" 3. Import courses from Quest by clicking on the 3 dots on the top right of the term board. This allows you to copy and paste your courses straight from your Quest account and fill up your term with minimal effort - Delete term: Removes a term board - Clear term: Clears all terms from a term board - Edit name: Edits the name of a term board - Dragging courses: courses can be dragged across multiple terms, into the cart, and into the trash bin for deletion - Dragging terms: terms can be dragged around and rearranged - Clicking on a course card brings you to the course's respective page

Filling out your courses allows you to fully utilize the other features, such as the Requisites Tree and Majors.

My Schedule (Early Stages)

logo

This feature allows you to copy and paste your Quest schedule directly into WatsMyMajor and formats into a nice Google calendar-like view. *Note: this feature hasn't been fully fleshed out, but my hope is that it will allow users to share schedules and combine schedules*

View Majors

logo

This allows users to check out different majors and track their progress towards their majors. if a user's courses have already been filled out, this page would auto-populate with courses that fulfill the requirements. If a requirements board is green, this means that you have fulfilled all the requirements for the current board.

Technologies

This project was structured with the help from https://github.com/mars/heroku-cra-node via the MIT license. It is a combination of 2 npm projects, the backend server and the frontend UI. So there are two package.json configs.

  1. package.json for Node server & Heroku deploy
    • heroku-postbuild script compiles the webpack bundle during deploy
    • cacheDirectories includes react-ui/node_modules/ to optimize build time
  2. react-ui/package.json for React web UI

Contributing

Want to work on WatsMyMajor? Check out our contributing guidelines!

Find a bug?

Create an issue here and I'll get back to you!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].