Preview to Tesseract
"We look beyond the Earth to greater worlds the Tesseract will unveil." - The Other from The Avengers
Tesseract helps to track what you need to do and what you have done. It's
- Text-based
- Easy to learn
FASTSUPER FAST to use
As a starter, you just need to
- Download it from here
- Open terminal to the directory where the jar file is
- Key in `java -jar tesseract.jar
- Use it
And it will manage your tasks for you 😜
It is powerful and FREE!
Available commands for now: list
, delete
, mark
, unmark
, filter
, find
, event
, todo
, deadline
, exit
FEATURES
- Managing tasks
- Reminders (coming soon)
- Ordering tasks according to priority (coming soon)
Change memory address
If you are familiar with Java codes, you can change where Tesseract stores your task history in the Tesseract class here by replacing src/main/Data/Schedule.txt
with the file path you want 😉
/**
* Main driving class of Tesseract.
* @author Fan Jue
* @version 0.3.0
* @since 0.1.0
*/
public class Tesseract {
private static final String DIRECTORY = "data";
private static final String SCHEDULE_PATH = DIRECTORY + "/Schedule.txt";