{"id":24719307,"url":"https://github.com/simon-gardier/study-terminal","last_synced_at":"2026-04-18T12:01:39.106Z","repository":{"id":177525584,"uuid":"316731966","full_name":"simon-gardier/study-terminal","owner":"simon-gardier","description":"📝Study your flash cards from the terminal ","archived":false,"fork":false,"pushed_at":"2024-07-04T19:36:15.000Z","size":2763,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T00:27:51.694Z","etag":null,"topics":["ascii-art","collections","flashcard-app","flashcards","java","json","learning","study","study-terminal"],"latest_commit_sha":null,"homepage":"https://en.wikipedia.org/wiki/Flashcard","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simon-gardier.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-28T12:45:24.000Z","updated_at":"2024-09-18T16:47:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"b43f0cba-cefa-497e-83f6-f2cf36810b7f","html_url":"https://github.com/simon-gardier/study-terminal","commit_stats":null,"previous_names":["sgardier/cmd-leitner-box-implementation","sgardier/command_line_flashcards","simon-gardier/command_line_flashcards"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simon-gardier/study-terminal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simon-gardier%2Fstudy-terminal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simon-gardier%2Fstudy-terminal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simon-gardier%2Fstudy-terminal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simon-gardier%2Fstudy-terminal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simon-gardier","download_url":"https://codeload.github.com/simon-gardier/study-terminal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simon-gardier%2Fstudy-terminal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31967993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ascii-art","collections","flashcard-app","flashcards","java","json","learning","study","study-terminal"],"created_at":"2025-01-27T11:17:22.473Z","updated_at":"2026-04-18T12:01:39.017Z","avatar_url":"https://github.com/simon-gardier.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 Study terminal\n![Release](https://img.shields.io/badge/Release-v1.0-blueviolet?style=for-the-badge)\n![Language](https://img.shields.io/badge/Java-ED8B00?style=for-the-badge)\n\n\u003cdiv style=\"display: flex; justify-content: space-around; align-items: center;\"\u003e\n  \u003cimg src=\"misc/title2.png\" alt=\"Study from terminal main title\" style=\"width: 100%;\"/\u003e\n\u003c/div\u003e\n\nStudy your flash card from the terminal using [Sebastian Leitner's algorithm](https://en.wikipedia.org/wiki/Flashcard)!\n\n## Summary\n1. [Try it!](#try-it)\n2. [Features](#features)\n3. [Technical features](#technical-features)\n4. [Improvements](#improvements)\n5. [Credits](#credits)\n\n## Try it!\n\n### Run the executable (`studyterminal.jar`)\n- [Download and install java](https://www.oracle.com/java/technologies/downloads/).\n- Open a terminal at the root of the project directory and type `java -jar studyterminal.jar` from there.\n \n### Compile and run the program\n```console\njavac -d bin -cp \"lib/gson-2.8.6.jar\" -sourcepath src src/studyterminal/Program.java\njava -cp \"bin:lib/gson-2.8.6.jar\" studyterminal.Program\n```\n\n### Compile and run the tests\n```console\njavac -d bin -cp \"bin:lib/gson-2.8.6.jar:lib/junit-platform-console-standalone-1.11.0-M2.jar\" -sourcepath tests $(find tests -name \"*.java\")\njava -cp \"bin:lib/gson-2.8.6.jar:lib/junit-platform-console-standalone-1.11.0-M2.jar\" org.junit.platform.console.ConsoleLauncher --scan-class-path\n```\n\n## Features\nThe algorithm used is the one developped by [Sebastian Leitner](https://en.wikipedia.org/wiki/Flashcard).\u003cbr\u003e\nFeatures :\n- Add cards to the box.\n- Remove cards from the box.\n- Review the cards of the day.\n- View statistics about your performances of the day.\n- Store the \"box\" of cards for later revisions.\n\n## Technical features\n- Publish - Subscribre pattern for the updates of the statistics.\n- Command pattern for the actions to be taken by the users.\n- Test suite of ~80 tests using JUnit (standalone) and FakeClasses.\n- Efficient collections usage for fast execution and low memory footprint.\n\n## Improvements\n- The program does not allow to simply revise all the cards of the box. The feature should not be hard to implement since it only requires to add a new Command.\n\n## Credits\n- [Simon Gardier](https://github.com/simon-gardier) (Author)\n- Nicolas Hendrix (studyterminal.consoles package author)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimon-gardier%2Fstudy-terminal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimon-gardier%2Fstudy-terminal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimon-gardier%2Fstudy-terminal/lists"}