Posts

Showing posts from January, 2023
Image
Since we have already been using bootstrap to style the nav bar, login and signup forms and various buttons, Michael had the idea of implementing django-bootstrap5, which would allow us to further style our app. In just a few hours we had much improved UI.
Image
 We are making good progress, we have all the "models" set-up, we have a basic user-interface, a basic User Account System. Users are able to view their modules, labs and exercises. Instructors are able to create and edit Modules etc. We started brainstorming a system that would allow a student to enrol into a module. We thought about ways of automating the process of registering a large amount of students. In this way the system would be similar to the actual Einstein system, in that, students wouldn't need to do anything themselves. We finally decided on creating a system similar to poodle or moodle, where a student would need a code, usually given by the lecturer, to enrol themselves in a module and view its contents.

Emails and User Registration

In our project’s function specification, we said user registration would work though emails. This would have worked in a manner we are all familiar with. User registering would need to confirm that a given email address was theirs by entering a code or clicking on a link they received via email. It was also envisaged that instructors when creating a class would enter a list of their students’ emails addresses. Somethings are easier to describe than code. In order to write this system, we would have needed some kind of stub email system to make up for the fact that we don’t have easy access to smtp servers. Accordingly, we have opted for a simpler system where students can register for a class by using a unique registration code. This simplifies development and registration and could always be supplemented by an email and/or system authentication plugins were development to proceed further. Another change we have made was to rename the class "class" to "module...

Starting Small - 5th January 2023

 As part of your 3rd year in DCU, you must complete your 3rd year project. Michael and I decided on recreating "Einstein" which is a system DCU uses to automatically verify scripts sent by students and give back grades. The core idea of our project, however, is that this system would be redistributable,  meaning, anyone could use this system in their own school, college, or even home. With just under 2 months of time, we began working.     We decided to use Discord for communication, as we already had it setup and were using it before beginning the project. After a turbulent start we got ourselves organised and started by agreeing which tasks each of us would work on. We would keep each other updated so as to not end up working on the same thing.     We decided to use django, since we were already familiar with it and it would allow us to build and deploy a working system it fairly quickly. We needed to get the basics right. So we started by creat...