Show HN: I made a website that saves you up to 2 hours a day (thezentask.netlify.app)
Hello Hackers,
I've been building ZenTask for about 1 month now so let me know what you think.
It's a website that lets you schedule your tasks across different days and see how much the completion of each task will take. I've been using it myself for a week now and I can proudly say that I have never been that productive in my life! Check it out it's completely free!
3 comments
[ 4.4 ms ] story [ 21.1 ms ] threadA couple of suggestions: 1. Instead of multiple tiny inputs, you could have a single form with a date picker which defaults to todays date. Clicking a column header could set the date input value. 2. An end user wont know about the formatting requirements for entering task duration. A more user friendly option would be to parse the duration from the task name. Using some regex to match, heres an example.
// Look for time patterns like "30min", "1h", "2 hours", etc. const timeRegex = /(\d+)\s*(min|mins|minutes|h|hr|hrs|hours)/; const match = text.match(timeRegex);