Attendance Tracker Introduction
Over the past little while I’ve been working on a tool to help me with tracking attendance. The idea is that it would take in attendances, and give me statistics and alerts that I should be aware of.
…Over the past little while I’ve been working on a tool to help me with tracking attendance. The idea is that it would take in attendances, and give me statistics and alerts that I should be aware of.
…watch in linux is used to run a reocurring command and display the output. I find it super useful when you need to follow a truncating log file. Example: To follow a log file, you can run the following command: watch “tail -n 50 output.log” Your immediate thought might be to just run tail -f…
The Attendance Tracker I’ve been working on is currently primarily focused on the relation between an Attendee, Activity, and Attendance records. The main input of the program, the data that fuels everything, is the attendance tracking. This is how I take attendance and store it. Attendance Process During an activity, attendance will usually be taken…