All Projects → FFCSThingy → FFCSThingy2.0

FFCSThingy / FFCSThingy2.0

Licence: MIT License
A course scheduling tool for FFCS in VIT, Vellore. Easily adaptable to any schedule/timetable. https://discord.com/invite/Un4UanH

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to FFCSThingy2.0

simso
Simulator of multiprocessor real-time scheduling
Stars: ✭ 55 (+266.67%)
Mutual labels:  scheduling
Flow-Shop-Scheduling
Genetic Algorithm for Flow Shop Scheduling
Stars: ✭ 19 (+26.67%)
Mutual labels:  scheduling
planning-wiki
By the community, for everyone. Planning.wiki is the online guide to AI Planning
Stars: ✭ 54 (+260%)
Mutual labels:  scheduling
King.Service
Task scheduling for .NET
Stars: ✭ 34 (+126.67%)
Mutual labels:  scheduling
cocktail
Elixir date recurrence library based on iCalendar events
Stars: ✭ 115 (+666.67%)
Mutual labels:  scheduling
fittable
Calendar display application built on top of the Sirius API.
Stars: ✭ 26 (+73.33%)
Mutual labels:  timetable
LaTeX-OCR
pix2tex: Using a ViT to convert images of equations into LaTeX code.
Stars: ✭ 1,566 (+10340%)
Mutual labels:  vit
HugsVision
HugsVision is a easy to use huggingface wrapper for state-of-the-art computer vision
Stars: ✭ 154 (+926.67%)
Mutual labels:  vit
subway-time
A nice NYC Subway time table.
Stars: ✭ 25 (+66.67%)
Mutual labels:  timetable
Visual-Transformer-Paper-Summary
Summary of Transformer applications for computer vision tasks.
Stars: ✭ 51 (+240%)
Mutual labels:  vit
Timetable
A super simple timetable app
Stars: ✭ 52 (+246.67%)
Mutual labels:  timetable
TimeTable
Timetable is an Android App for students.
Stars: ✭ 40 (+166.67%)
Mutual labels:  timetable
OFFLINE-ERP
A desktop application which helps students to choose Disciplinary and Open Electives wisely.
Stars: ✭ 16 (+6.67%)
Mutual labels:  timetable
OpenUntis
An alternative FLOSS android client for the Untis timetable system
Stars: ✭ 13 (-13.33%)
Mutual labels:  timetable
timer.cljs
Scheduling async operations in Clojurescript
Stars: ✭ 22 (+46.67%)
Mutual labels:  scheduling
CoreLibraries
A set of .NET libraries for building enterprise level solutions quickly
Stars: ✭ 22 (+46.67%)
Mutual labels:  scheduling
Job-Shop-Scheduling-Genetic-Algorithm
Job Shop Scheduling Solver using Genetic Algorithyms
Stars: ✭ 48 (+220%)
Mutual labels:  scheduling
MinTimetable
Customizable TimeTableView for Android
Stars: ✭ 26 (+73.33%)
Mutual labels:  timetable
clockwork
A scheduler process to replace cron.
Stars: ✭ 472 (+3046.67%)
Mutual labels:  scheduling
psched
Priority-based Task Scheduling for Modern C++
Stars: ✭ 59 (+293.33%)
Mutual labels:  scheduling

FFCSThingy2.0

FFCSThingy2.0 is a course scheduling helper built for FFCS in VIT, Vellore.

The framework is extensible and modular, allowing use with other timetable structures as well.

Built With

Setting Up:

  • Install Node, Mongo
  • Run mongod in a terminal somewhere (Not required if it's running as a service)
  • Google OAuth
  • Backend
    • run npm i
    • create a .env file
    • Add the ID and Secret you got from OAuth in the .env file
    • NODE_GOOGLE_CLIENT_ID=<Your Client ID>
      NODE_GOOGLE_CLIENT_SECRET=<Your Client Secret>
      
    • run node server.js
  • Client
    • run npm i
    • run npm start
    • Login using a Google Account (top-right corner)
  • Database
    • Add an admin scope to your user to be able to populate the details in the DB
    • Open a mongo shell with mongo
    • Choose the appropriate DB with use FFCS
    • Run db.users.update({}, { $set: { scopes: ['user', 'admin'] } })
      • This will add the admin scope to all existing users, so be careful
  • Navigate to:
    • http://localhost:3001/course/addCoursesToDB
    • http://localhost:3001/curriculum/updateCurriculums
    • These will populate the database with pre-existing data
  • You should be good to go!

Features

Frontend

  • Built with Redux and React
  • Uses custom components built on top of React Bootstrap
  • Uses TypeScript
  • Extensible
    • Timetable defines the layout of the timetable and values of cells
    • Clashmap defines the data structure used to check for clashes
      • This can be changed to define which slots clash with each other
      • It forms the base of a lot of interactions of the app
    • Courses defines the type of courses and slots available and utility functions to check types and convert them to standard types
      • The validSlots constant is used to search for courses by slot
    • Theming
      • Themes defines the themes in the app
      • Theme CSS defines the actual theme components
      • Uses SCSS and CSS Modules for a clean structure
      • Theming is based on CSS variables using a mixin

Backend

  • Built with Node and MongoDB
  • Uses Mongoose for stricter MongoDB usage
  • Uses Express for routing
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].