https://github.com/rahji/syllabuster
A TUI for making the Grading section of my syllabi
https://github.com/rahji/syllabuster
Last synced: 3 months ago
JSON representation
A TUI for making the Grading section of my syllabi
- Host: GitHub
- URL: https://github.com/rahji/syllabuster
- Owner: rahji
- License: mit
- Created: 2024-08-16T04:10:22.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T04:18:00.000Z (10 months ago)
- Last Synced: 2025-02-06T02:51:23.754Z (4 months ago)
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# syllabuster
This is a command-line tool that helps me generate the grade-related page of a syllabus.
I don't like grading based on percentages. It's easier for me to come up
with an integer number of points for each assignment/task and sum them to arrive
at a total number of available points for the semester.With this tool, I can enter a list of assignments with their corresponding point values
and get two files as output:1. A markdown file containing tables listing the assignments and the letter grade scale
2. A PNG file containing a pie chart showing the distribution of points for the whole semesterThe letter grade scale is based on an existing scale, which is specified in the configuration file.
While the reference scale may use fractional numbers, all other points will be whole numbers.This tool is a little weird, but it does exactly what I need.
## Input Format
When entering the list of assignments, be sure to look at the examples shown.
The requirements are:* One assignment per line
* Each line starts with the number of points for the assignment
* An optional multiplier can be added next (ie: "300 x 4" if there are four 300-point assignments)
* The name of the assignment is next
* You can add an optional short-name for the project in parenthesis. This is used for the pie chart labels.## Installation
1. Clone the repo
2. Run `make build` from your terminal## Usage
Run the command by entering `syllabuster` from your terminal
## Screenshot

## Sample PNG Output

## Notes
* The configuration file also contains the assignments and points but that's unused at the moment.
* The PNG file is 700 pixels x 700 pixels