Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
101–108 of 108 posts
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#102Awesome. One minor complaint: I added some tasks, thought, "man this is cool", and signed up--at which point you erased my tasks. Not a huge complaint, but they really should be transfered over to your newly-created account.
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#103My favorite part is the "I am a new user" button - very slick!
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#104Awesome. One minor complaint: I added some tasks, thought, "man this is cool", and signed up--at which point you erased my tasks. Not a huge complaint, but they really should be transfered over to your newly-created account.
This could easily be done using local storage. I'm guessing the author has already run into this problem and is working on it though.
He's already storing login info, so associating a few hundred bytes of text with that shouldn't be too difficult.
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#105Earlier quoted context omitted.
This could easily be done using local storage. I'm guessing the author has already run into this problem and is working on it though.
Local would defeat the purpose of a web app, as I'd have three different copies on my iPad, iPhone, and laptop. He's already storing login info, so associating a few hundred bytes of text with that shouldn't be too difficult.
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#106I'm a big fan of taskwarrior, a CLI todo list for linux. I find I use it more than web based ones as I'm always in the console so there's little mental mode switching to use it. Basically not having to go to a browser or touch the mouse makes all the difference. I'd love it if someone made a todo web app that could sync with taskwarrior. You then get the online slick interface of the web app with the low friction acc…
Must check it out. First thing to try would be to link its configuration folder from my Dropbox folder to get cross-PC syncing.
So you just move the data folder to your dropbox and edit your .rctask file accordingly. Of course you need to do this for every computer, so it makes sense for the few machines that you usually use but you don't really get the available-anywhereness of an online app.
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#107(shameless plug) I wrote a simple to-do app (weekly planner) for my own use (now has a few thousand users): http://weekis.com
Wow, promoting your own similar app in someone else's Show HN is pretty stale.
Re: Show HN: I made a Web-based Todo App - used: CSS3 3D transforms, Node.js, love
#108So, 502. Can you please (seriously) write a post about what your server setup is and what its like to be deal with the rush of traffic. I'll be doing it one day soon and all the info I can get would really help!
The issue was pretty mundane, the server script is very simple - so I assumed it wouldn't need to have a lot of monitoring overhead to deal with traffic spikes. Even though it's a very simple script the volume of traffic used up all the memory on the machine leading to server death, then my restart script turned out to be wrong :(