Its name is Doge, a person who occasionally pisses annoys you but at the end of the day, you still love them. You can download me here! Below are the instructions on how to use it.
Doge: I swear I'm nice! 😉
▄ ▄
▌▒█ ▄▀▒▌
▌▒▒█ ▄▀▒▒▒▐
▐▄█▒▒▀▀▀▀▄▄▄▀▒▒▒▒▒▐
▄▄▀▒▒▒▒▒▒▒▒▒▒▒█▒▒▄█▒▐
▄▀▒▒▒░░░▒▒▒░░░▒▒▒▀██▀▒▌
▐▒▒▒▄▄▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▀▄▒▌
▌░░▌█▀▒▒▒▒▒▄▀█▄▒▒▒▒▒▒▒█▒▐
▐░░░▒▒▒▒▒▒▒▒▌██▀▒▒░░░▒▒▒▀▄▌
▌░▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░░░░░▒▒▒▒▌
▌▒▒▒▄██▄▒▒▒▒▒▒▒▒░░░░░░░░▒▒▒▐
▐▒▒▐▄█▄█▌▒▒▒▒▒▒▒▒▒▒░▒░▒░▒▒▒▒▌
▐▒▒▐▀▐▀▒▒▒▒▒▒▒▒▒▒▒▒▒░▒░▒░▒▒▐
▌▒▒▀▄▄▄▄▄▄▒▒▒▒▒▒▒▒░▒░▒░▒▒▒▌
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒░▒░▒▒▄▒▒▐
▀▄▒▒▒▒▒▒▒▒▒▒▒▒▒░▒░▒▄▒▒▒▒▌
▀▄▒▒▒▒▒▒▒▒▒▒▄▄▄▀▒▒▒▒▄▀
▀▄▄▄▄▄▄▀▀▀▒▒▒▒▒▄▄▀
▀▀▀▀▀▀▀▀▀▀▀▀
- Task tracker
- Able to track different kinds of tasks (Todo, Event, Deadline)
- Mark completed tasks
- Unmark completed tasks
- Delete unwanted tasks
- List the current tasks
- todo
borrow book
: adds a todo task - event
read book
/2022-02-10 20:15
: adds an event - deadline
return book
/2022-02-12 19:10
: adds a task with a deadline
- list: generates a list of all tasks
- list
<
2022-05-20 15:20
: generates a list of tasks that falls before 20th May 2022 15:20
- delete
2
: deletes the 2nd task in the list
- mark
1
: marks 1st task as completed - unmark
3
: unmarks 3rd task as uncompleted
- find
book
: search and filters out all task that contains the word "book"
- Adds a todo task to the task list.
- Format:
todo TASK
Example:
todo read book
Expected Outcome:
Stop troubling me, I've already added this task:
T | | read book
- Adds an event task to the task list.
- Format:
event TASK / YYYY-MM-DD HH:MM
- (Date/Time have to be valid)
Example:
event read book / 2022-02-10 14:00
Expected Outcome:
Stop troubling me, I've already added this task:
E | | read book | AT: 10-Feb-2022 14:00
- Adds a deadline task to the task list.
- Format:
deadline TASK / YYYY-MM-DD HH:MM
Example:
deadline read book / 2022-02-10 14:00
Expected Outcome:
Stop troubling me, I've already added this task:
D | | read book | DEADLINE: 10-Feb-2022 14:00
- Shows a list of certain tasks in the task list.
- Format:
list LIMITER YYYY-MM-DD HH:MM
- (LIMITERS: >, >=, =, <=, <)
Example:
list < 2022-04-10 14:00
Expected Outcome:
Here are the tasks in your list:
1) T | | read book
2) E | | read book | AT: 10-Feb-2022 14:00
3) D | | read book | DEADLINE: 10-Feb-2022 14:00
- Filters out a list of certain tasks in the task list based on character sequence specified.
- Format:
find CHARSEQUENCE
Example:
find book
Expected Outcome:
Here are the matching tasks in your list:
1) T | | read book
2) E | | read book | AT: 10-Feb-2022 14:00
3) D | | read book | DEADLINE: 10-Feb-2022 14:00
public class Launcher {
public static void main(String[] args) {
Application.launch(Main.class, args);
}
}