Carder Flashcards is a simple desktop studying app that allows users to create, study, edit, and delete flashcard sets locally. Users can study their flashcards in various ways to improve memory retention, including:
- Non-tracking mode: Sequentially move through flashcard sets
- Tracking mode: Sort cards into "unknown" and "known" categories and studies unknown terms
- Shuffle mode: Randomly orders the flashcards for varied studying.
I developed this project to address the issues and bugs I encountered using Quizlet. The application is entirely built in Java using Swing for its UI and Maven as a build tool. All necessary dependencies are included in the pom.xml
file.
- Non-tracking mode for a straightforward sequential review
- Tracking mode for categorizing cards as "known" or "unknown"
- Shuffle mode for a randomized review experience
Ensure that the following are installed on your system:
- [Java 22+]: JDK download
- [Maven 3+]: Maven download
- After forking this repository, clone your copy onto your local machine with:
git clone https://github.com/YOUR_USERNAME/FORKED_REPO_NAME.git cd FORKED_REPO_NAME
- Build the project using Maven:
mvn clean install
- Run
src/main/java/app/App.java
- Ex: From IntelliJ, navigate to
src/main/java/app/App.java
and run themain
method.
- Ex: From IntelliJ, navigate to
-
Issue:
java.lang.UnsupportedClassVersionError
- Solution: Ensure you have the correct JDK version installed. The project is compatible with JDK 22.
-
Issue: Missing Maven dependencies
- Solution: Run
mvn clean install
to download all required dependencies as specified in thepom.xml
file.
- Solution: Run
- From the home screen, click the
+ new set
button located at the bottom. You will be moved to the creation screen - Fill in the title, description, as well as card fields
- To add a card, press
+ card
- To delete a specific card, press the
x
button to the right of it - Any invalid inputs (i.e., empty) will cause an error message to display, outlining why creation has failed
- Once all inputs all valid (i.e., non-empty), you can press either
create
orcreate + study
to create the set. Pressingcreate
will bring you back to the home screen, whilecreate + study
lets you study your newly created set
- From the home screen, press the
study
button for a specific set or, while in the creation screen, presscreate + study
to study (both shown below). You will then be moved to the studying screen.
OR
- In the non-tracking (default) study mode, use the
prev
andnext
buttons to move through the set. When the end of your set is reached, you will be asked to go back or fully restart.
- In the tracking study mode, use the
unknown
andknown
buttons to sort your cards. When the end of your set is reached, you will be asked to go back, study your unknown cards, or fully restart.
- To edit a set, press the
edit
button to the left of it. This will bring you to the edit screen
- In the edit screen, you can freely edit the title, description, and cards. The same logic for adding and removing cards applies
- If any edits are invalid (i.e., empty) and you press
done
, an error message will display, outlining what must be corrected
- Once all edits are valid, you can press
done
to overwrite your previous set. You will then be brought to the home screen, where your edits will be readily apparent
NOTE: If you leave to the home screen or exit the app before publishing edits, they will not be saved.
- To delete a set, simply press the
delete
button on the home screen. You will be prompted to confirm this deletion. Deletions are irreversible
This project is licensed under the MIT License. See the LICENSE file for more information.
This project is currently not open to contributions. However, you are welcome to fork it.