Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jml/hodor
Command-line todo list program, compatible with todo.txt
https://github.com/jml/hodor
Last synced: about 2 months ago
JSON representation
Command-line todo list program, compatible with todo.txt
- Host: GitHub
- URL: https://github.com/jml/hodor
- Owner: jml
- License: apache-2.0
- Created: 2014-09-01T07:27:18.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2021-01-16T09:59:57.000Z (almost 4 years ago)
- Last Synced: 2024-10-13T10:35:46.911Z (3 months ago)
- Language: Haskell
- Size: 172 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hodor
*A simple todo list system*
## What does it do?
It's a todo list.
You can *add items*:
```
$ hodor add Buy cereal
01 2014-09-01 Buy cereal
HODOR: 1 added.
```View them:
```
$ hodor ls
01 2014-09-01 Buy cereal
--
HODOR: 1 of 1 items shown
```Mark them as *done*:
```
$ hodor do 1
01 x 2014-09-01 2014-09-01 Buy cereal
HODOR: 1 marked as done.
```Run `hodor --help` to get the full range of commands.
## Why use this?
Probably you don't want to. Hodor was written as a clone of
[todotxt](http://todotxt.com/), which is used much more widely and is much
better maintained.## Why does this exist?
So I could try to write a command-line utility in Haskell. It's been fun.
Released under the Apache 2.0 license, copyright Jonathan M. Lange.