Skip to main content
  1. Projects/

study-cli

·109 words·1 min
Jake Roggenbuck
Author
Jake Roggenbuck
Working at Capital One as a SWE Intern as well as Programming Language Research during the school year.

study-cli
Go
#

CLI tool to quiz and learn a question dataset. This can be used for memorizing any sort of multiple choice compliant quizzes. Similar to flashcards, except no need to write out flash cards, or carry them with you. Also, study-cli can be set to random ask if you’d like to study at random times.

Question Set Schema #

type Single struct {
    Name string `json:"name"`
    Correct int `json:"correct"`
    Answers []string `json:"answers"`
    Question string `json:"question"`
}
[
    {
        "name": "question one",
        "correct": 0,
        "answers": [ "A. yes", "B. no" ],
        "question": "Which of the two options is a three letter world?",
    }
]

TODO #

  • Add dataset manager