No commit activity in last 3 years
No release in over 3 years
Hacker ToDo List is integrated with github and all your todo's are stored as private gists. So, you need not worry about your to-do's when you switch from your office machine to your home machine. Just provide your github credentials, your todo's will be synced.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0.9.0
>= 1.7.5
 Project Readme

Hacker ToDo List

Hacker ToDo List is a command line to-do list, primarily for hackers who do not like to take their hands off the keyboard. Hacker ToDO List is available as a gem

Features

Hacker ToDo List is integrated with github and all your todo's are stored as private gists. So, you need not worry about your to-do's when you switch from your office machine to your home machine. Just provide your github credentials, your todo's will be synced.

Installation

gem install hacker_todo_list

Usage

> require "hacker_todo_list"

> todo_list = HackerToDo::ToDoList.new

Username: manjunath-nm89
Password:

> todo_list.add "Create a ruby gem \nUpdate the version \nLearn to play Guitar"

ToDo added successfully.

Hacker ToDo List:
1. Create a ruby gem 
2. Update the version
3. Learn to play Guitar

> todo_list.delete 1 2

ToDo deleted successfully.    

Hacker ToDo List:
1. Learn to play Guitar

> todo_list.list

Hacker ToDo List:
1. Learn to play Guitar

ToDo Application

I have setup a client which uses the Hacker ToDO List gem. Check it out, this file can be made as an executable and used as a ToDo application.

> gem install "hacker_todo_list"
> echo "alias hacker_todo='ruby path/to/hacker_todo_list_client.rb'" >> ~/.bashrc
> source ~/.bashrc (or open a new terminal)

Now from anywhere, you can do,

> hacker_todo add "Go to the grocery store"
> hacker_todo delete 1
> hacker_todo