I''m looking for a good web-based to do list app. Essentially, I''d like to use Basecamp''s todo management system, but that''s not an option since I can''t install Basecamp on a server I own. The information being tracked in the list cannot be sent out of my intranet. I would imagine that there are a couple of open source rails apps that would meet my needs since many of the basic Rails intros are to do lists. All of my searches, however, just turn up those tutorials. Is anyone out there working on an OSS To Do app or will I have to roll my own? I''d like to save myself the time and help out an existing project, if possible. -- Ryan
Hi Ryan ~ With Rails it should literally take no more than an afternoon to put together a to-do list. But if you want I will build it for you for $5000.00. Where are those tutorials? ~ Ben "drank to much coffee" Reubenstein On 5/9/06, Ryan Nielsen <rpnielsen@gmail.com> wrote:> I''m looking for a good web-based to do list app. Essentially, I''d like > to use Basecamp''s todo management system, but that''s not an option > since I can''t install Basecamp on a server I own. The information > being tracked in the list cannot be sent out of my intranet. > > I would imagine that there are a couple of open source rails apps that > would meet my needs since many of the basic Rails intros are to do > lists. All of my searches, however, just turn up those tutorials. > > Is anyone out there working on an OSS To Do app or will I have to roll > my own? I''d like to save myself the time and help out an existing > project, if possible. > > -- > Ryan > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Ben Reubenstein 303-947-0446 http://www.benr75.com
create table todo_items ( id int not null, title varchar(255) not null, notes text not null, created_at datetime not null, required_by datetime not null, primary key(id) ); ruby script/generate scaffold TodoItem Can I have my ?5000 now? :0) Steve Ben Reubenstein wrote:> Hi Ryan ~ > > With Rails it should literally take no more than an afternoon to put > together a to-do list. But if you want I will build it for you for > $5000.00. Where are those tutorials? > > ~ Ben "drank to much coffee" Reubenstein > > On 5/9/06, Ryan Nielsen <rpnielsen@gmail.com> wrote: > >> I''m looking for a good web-based to do list app. Essentially, I''d like >> to use Basecamp''s todo management system, but that''s not an option >> since I can''t install Basecamp on a server I own. The information >> being tracked in the list cannot be sent out of my intranet. >> >> I would imagine that there are a couple of open source rails apps that >> would meet my needs since many of the basic Rails intros are to do >> lists. All of my searches, however, just turn up those tutorials. >> >> Is anyone out there working on an OSS To Do app or will I have to roll >> my own? I''d like to save myself the time and help out an existing >> project, if possible. >> >> -- >> Ryan >> _______________________________________________ >> Rails mailing list >> Rails@lists.rubyonrails.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> > > > -- > Ben Reubenstein > 303-947-0446 > http://www.benr75.com > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails > > >
http://www.google.com/search?q=ruby+on+rails+to+do+list&start=0&ie=utf-8&oe=utf-8&client=firefox-a&r On 5/9/06, Stephen Bartholomew <sb@2404.co.uk> wrote:> create table todo_items ( > id int not null, > title varchar(255) not null, > notes text not null, > created_at datetime not null, > required_by datetime not null, > primary key(id) > ); > > ruby script/generate scaffold TodoItem > > Can I have my ?5000 now? > > :0) > > Steve > > Ben Reubenstein wrote: > > Hi Ryan ~ > > > > With Rails it should literally take no more than an afternoon to put > > together a to-do list. But if you want I will build it for you for > > $5000.00. Where are those tutorials? > > > > ~ Ben "drank to much coffee" Reubenstein > > > > On 5/9/06, Ryan Nielsen <rpnielsen@gmail.com> wrote: > > > >> I''m looking for a good web-based to do list app. Essentially, I''d like > >> to use Basecamp''s todo management system, but that''s not an option > >> since I can''t install Basecamp on a server I own. The information > >> being tracked in the list cannot be sent out of my intranet. > >> > >> I would imagine that there are a couple of open source rails apps that > >> would meet my needs since many of the basic Rails intros are to do > >> lists. All of my searches, however, just turn up those tutorials. > >> > >> Is anyone out there working on an OSS To Do app or will I have to roll > >> my own? I''d like to save myself the time and help out an existing > >> project, if possible. > >> > >> -- > >> Ryan > >> _______________________________________________ > >> Rails mailing list > >> Rails@lists.rubyonrails.org > >> http://lists.rubyonrails.org/mailman/listinfo/rails > >> > > > > > > -- > > Ben Reubenstein > > 303-947-0446 > > http://www.benr75.com > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Yeah, yeah, I know. It does take a bit more than 30 seconds to get something of the quality of basecamp, however. That classic 80/20 rule and everything. I was hoping that there was an existing OSS project/time management app that I could use to get a running start. After all, it would take no more than an afternoon to get a blog system running, yet Typo is still under active development. -- Ryan On 5/9/06, John Ivanoff <john.ivanoff@gmail.com> wrote:> http://www.google.com/search?q=ruby+on+rails+to+do+list&start=0&ie=utf-8&oe=utf-8&client=firefox-a&r > > > On 5/9/06, Stephen Bartholomew <sb@2404.co.uk> wrote: > > create table todo_items ( > > id int not null, > > title varchar(255) not null, > > notes text not null, > > created_at datetime not null, > > required_by datetime not null, > > primary key(id) > > ); > > > > ruby script/generate scaffold TodoItem > > > > Can I have my ?5000 now? > > > > :0) > > > > Steve > > > > Ben Reubenstein wrote: > > > Hi Ryan ~ > > > > > > With Rails it should literally take no more than an afternoon to put > > > together a to-do list. But if you want I will build it for you for > > > $5000.00. Where are those tutorials? > > > > > > ~ Ben "drank to much coffee" Reubenstein > > > > > > On 5/9/06, Ryan Nielsen <rpnielsen@gmail.com> wrote: > > > > > >> I''m looking for a good web-based to do list app. Essentially, I''d like > > >> to use Basecamp''s todo management system, but that''s not an option > > >> since I can''t install Basecamp on a server I own. The information > > >> being tracked in the list cannot be sent out of my intranet. > > >> > > >> I would imagine that there are a couple of open source rails apps that > > >> would meet my needs since many of the basic Rails intros are to do > > >> lists. All of my searches, however, just turn up those tutorials. > > >> > > >> Is anyone out there working on an OSS To Do app or will I have to roll > > >> my own? I''d like to save myself the time and help out an existing > > >> project, if possible. > > >> > > >> -- > > >> Ryan > > >> _______________________________________________ > > >> Rails mailing list > > >> Rails@lists.rubyonrails.org > > >> http://lists.rubyonrails.org/mailman/listinfo/rails > > >> > > > > > > > > > -- > > > Ben Reubenstein > > > 303-947-0446 > > > http://www.benr75.com > > > _______________________________________________ > > > Rails mailing list > > > Rails@lists.rubyonrails.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Task-this is a nice, simple to-do list application with the source available: http://taskthis.darthapo.com Tracks is also a nice getting this done application: http://www.rousette.org.uk/projects/ -- Joe Clarke RailsPlayground.com On 5/9/06, Ryan Nielsen <rpnielsen@gmail.com> wrote:> > Yeah, yeah, I know. It does take a bit more than 30 seconds to get > something of the quality of basecamp, however. That classic 80/20 rule > and everything. I was hoping that there was an existing OSS > project/time management app that I could use to get a running start. > > After all, it would take no more than an afternoon to get a blog > system running, yet Typo is still under active development. > > -- > Ryan > > On 5/9/06, John Ivanoff <john.ivanoff@gmail.com> wrote: > > > http://www.google.com/search?q=ruby+on+rails+to+do+list&start=0&ie=utf-8&oe=utf-8&client=firefox-a&r > > > > > > On 5/9/06, Stephen Bartholomew <sb@2404.co.uk> wrote: > > > create table todo_items ( > > > id int not null, > > > title varchar(255) not null, > > > notes text not null, > > > created_at datetime not null, > > > required_by datetime not null, > > > primary key(id) > > > ); > > > > > > ruby script/generate scaffold TodoItem > > > > > > Can I have my ?5000 now? > > > > > > :0) > > > > > > Steve > > > > > > Ben Reubenstein wrote: > > > > Hi Ryan ~ > > > > > > > > With Rails it should literally take no more than an afternoon to put > > > > together a to-do list. But if you want I will build it for you for > > > > $5000.00. Where are those tutorials? > > > > > > > > ~ Ben "drank to much coffee" Reubenstein > > > > > > > > On 5/9/06, Ryan Nielsen <rpnielsen@gmail.com> wrote: > > > > > > > >> I''m looking for a good web-based to do list app. Essentially, I''d > like > > > >> to use Basecamp''s todo management system, but that''s not an option > > > >> since I can''t install Basecamp on a server I own. The information > > > >> being tracked in the list cannot be sent out of my intranet. > > > >> > > > >> I would imagine that there are a couple of open source rails apps > that > > > >> would meet my needs since many of the basic Rails intros are to do > > > >> lists. All of my searches, however, just turn up those tutorials. > > > >> > > > >> Is anyone out there working on an OSS To Do app or will I have to > roll > > > >> my own? I''d like to save myself the time and help out an existing > > > >> project, if possible. > > > >> > > > >> -- > > > >> Ryan > > > >> _______________________________________________ > > > >> Rails mailing list > > > >> Rails@lists.rubyonrails.org > > > >> http://lists.rubyonrails.org/mailman/listinfo/rails > > > >> > > > > > > > > > > > > -- > > > > Ben Reubenstein > > > > 303-947-0446 > > > > http://www.benr75.com > > > > _______________________________________________ > > > > Rails mailing list > > > > Rails@lists.rubyonrails.org > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > > > > > > > _______________________________________________ > > > Rails mailing list > > > Rails@lists.rubyonrails.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060509/e7b41bc3/attachment.html
Ah, brilliant! Thanks, I''ll explore these two options and see where I can help out. -- Ryan On 5/9/06, Joe Clarke <joemclarke@gmail.com> wrote:> Task-this is a nice, simple to-do list application with the source > available: > http://taskthis.darthapo.com > > Tracks is also a nice getting this done application: > http://www.rousette.org.uk/projects/ > > > > -- > Joe Clarke > RailsPlayground.com > > > > > On 5/9/06, Ryan Nielsen < rpnielsen@gmail.com> wrote: > > Yeah, yeah, I know. It does take a bit more than 30 seconds to get > > something of the quality of basecamp, however. That classic 80/20 rule > > and everything. I was hoping that there was an existing OSS > > project/time management app that I could use to get a running start. > > > > After all, it would take no more than an afternoon to get a blog > > system running, yet Typo is still under active development. > > > > -- > > Ryan > > > > On 5/9/06, John Ivanoff <john.ivanoff@gmail.com> wrote: > > > > http://www.google.com/search?q=ruby+on+rails+to+do+list&start=0&ie=utf-8&oe=utf-8&client=firefox-a&r > > > > > > > > > On 5/9/06, Stephen Bartholomew <sb@2404.co.uk > wrote: > > > > create table todo_items ( > > > > id int not null, > > > > title varchar(255) not null, > > > > notes text not null, > > > > created_at datetime not null, > > > > required_by datetime not null, > > > > primary key(id) > > > > ); > > > > > > > > ruby script/generate scaffold TodoItem > > > > > > > > Can I have my ?5000 now? > > > > > > > > :0) > > > > > > > > Steve > > > > > > > > Ben Reubenstein wrote: > > > > > Hi Ryan ~ > > > > > > > > > > With Rails it should literally take no more than an afternoon to put > > > > > together a to-do list. But if you want I will build it for you for > > > > > $5000.00. Where are those tutorials? > > > > > > > > > > ~ Ben "drank to much coffee" Reubenstein > > > > > > > > > > On 5/9/06, Ryan Nielsen < rpnielsen@gmail.com> wrote: > > > > > > > > > >> I''m looking for a good web-based to do list app. Essentially, I''d > like > > > > >> to use Basecamp''s todo management system, but that''s not an option > > > > >> since I can''t install Basecamp on a server I own. The information > > > > >> being tracked in the list cannot be sent out of my intranet. > > > > >> > > > > >> I would imagine that there are a couple of open source rails apps > that > > > > >> would meet my needs since many of the basic Rails intros are to do > > > > >> lists. All of my searches, however, just turn up those tutorials. > > > > >> > > > > >> Is anyone out there working on an OSS To Do app or will I have to > roll > > > > >> my own? I''d like to save myself the time and help out an existing > > > > >> project, if possible. > > > > >> > > > > >> -- > > > > >> Ryan > > > > >> _______________________________________________ > > > > >> Rails mailing list > > > > >> Rails@lists.rubyonrails.org > > > > >> > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > >> > > > > > > > > > > > > > > > -- > > > > > Ben Reubenstein > > > > > 303-947-0446 > > > > > http://www.benr75.com > > > > > _______________________________________________ > > > > > Rails mailing list > > > > > Rails@lists.rubyonrails.org > > > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > Rails mailing list > > > > Rails@lists.rubyonrails.org > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > _______________________________________________ > > > Rails mailing list > > > Rails@lists.rubyonrails.org > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails > > >