Skip to the content.

FlashCards

Open Source Flash Card Application for learning and Memorizing anything

Author: Chris Robertson

License: Released under the BSD license

Purpose: A simple Open Source Flash Card Application for anyone to memorize programming and math. I got the idea for this program to keep my mind sharp and wanted to remember facts I have to look up often with a goal of being a better programmer and human. I left the application as simple as possible so that anyone can extend the functionality without much complexity.

Update the information you want to memorize into the memorize.txt file and run. This is the open source comand line version and there is a web version.

Works with Python2.7 and 3.5 MacOS and Debian

Java version tested and works with IntelliJ

C++ version tested and works MacOS / Linux

Python Usage:

Open Terminal
git clone https://github.com/electronicsleep/FlashCards.git
cd FlashCards
python3 FlashCards.py

Java Usage:

See FlashCardsJava/README.md

C++ Usage:

Open Terminal
git clone https://github.com/electronicsleep/FlashCards.git
cd FlashCards


# MacOS
llvm-g++ FlashCards.cpp -o ./FlashCards
#Linux
g++ FlashCards.cpp -o FlashCards

./FlashCards #run one
for i in {1..100}; do ./FlashCards; done #run drill one hundred

Memorize test file format: (memorize.txt)

Q. Questions
A. Answers

Python Command Line Version

Screenshot CLI

Java Version

Screenshot Java

Todo/Ideas:

Resources: https://www.python.org/