Thank you for showing interest in this project.This project is designed specially for beginners who has put there first step in opensource contribution. So feel free to contribute
In this project our aim is to implement a command-line (CLI) program that lets you manage your todos.
Here's how it should work when you're done:
-
Install CPP: You should have build support for cpp on your system.
-
You are expected to write the code in
todo.cpp
file. -
Once you are done with the changes you should compile the code by running the following command from the terminal.
On Windows:
g++ -o todo todo.cpp
-
The app can be run in the console with
./todo
. -
The app should read from and write to a
todo.txt
text file. Each todo item occupies a single line in this file. Here is an example file that has 2 todo items.
water the plants
change light bulb
-
When a todo item is completed, it should be removed from
todo.txt
and instead added to thedone.txt
text file. This file has a different format:x 2020-06-12 the text contents of the todo item
- the letter x
- the current date in
yyyy-mm-dd
format - the original text
The date when the todo is marked as completed is recorded in the
yyyy-mm-dd
format (ISO 8601). For example, a date like15th August, 2020
is represented as2020-08-15
.
Executing the command without any arguments, or with a single argument help
prints the CLI usage.
$ ./todo help
Usage :-
$ ./todo add "todo item" # Add a new todo
$ ./todo ls # Show remaining todos
$ ./todo del NUMBER # Delete a todo
$ ./todo done NUMBER # Complete a todo
$ ./todo help # Show usage
$ ./todo report # Statistics
Use the ls
command to see all the todos that are not yet complete. The most recently added todo should be displayed first.
$ ./todo ls
[2] change light bulb
[1] water the plants
Use the add
command. The text of the todo item should be enclosed within double quotes (otherwise only the first word is considered as the todo text, and the remaining words are treated as different arguments).
$ ./todo add "the thing i need to do"
Added todo: "the thing i need to do"
Use the del
command to remove a todo item by its number.
$ ./todo del 3
Deleted todo #3
Attempting to delete a non-existent todo item should display an error message.
$ ./todo del 5
Error: todo #5 does not exist. Nothing deleted.
Use the done
command to mark a todo item as completed by its number.
$ ./todo done 1
Marked todo #1 as done.
Attempting to mark a non-existed todo item as completed will display an error message.
$ ./todo done 5
Error: todo #5 does not exist.
Use the report
command to see the latest tally of pending and completed todos.
$ ./todo report
yyyy-mm-dd Pending : 1 Completed : 4
Clone this repo!
Make a local clone of this repo, so you can work on it from your own computer.
git clone https://github.com/FOSS-Cell-GECPKD/Todo-List.git
Make your own branch
Do the changes
Commit the code with a proper message
Push the code to the remote repository.
create the Pull Request, and wait for merge
Always make 1 PR at time.
When you are ready to start work on an issue:
Let us know by leaving a comment on the issue. Once you are assigned the issue (or once you have claimed the issue) only then proceed to make the Pull Request. This will help avoid multiple PRs pertaining to the same issue. If you don't see your idea listed, do one of the following:
If your contribution is minor, such as a typo fix, open a pull request. If your contribution is major, such as a new feature/enhancement, start by opening an issue first. This way, other people can be also involved in the discussion before you do any work.
Discussions about Todo-List takes place on Gitter chat. Anyone is welcome to join these conversations.
Thanks goes to these wonderful peoples.
Rishikesh Raj 🖋 📖 💻 |
This project was a part of FOSS OpenHack '20: https://openhack.gitbook.io/openhack-20/.