I am the author of https://Nestful.app (there's some overlap, but we do not seem to compete). I have built it after being through the same ordeal, and have come to the conclusion that the tool is not the main hurdle, especially at the level of Trello or Asana, which are very high quality tools. The lack of productivity comes from the methodology those tools implement. Their methodologies contributed a whole lot but b…
Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
151–160 of 470 posts
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#152Does it have offline support? This is the one thing I'm missing the most about Notion, Miro, Google Calendar, and all of this - offline support. In German trains, I'm offline, on flights, I'm often offline; while traveling, I'm often offline. Offline capabilities are often neglected.
Have you tried Obsidian with its Kanban plug-in? If so, I’d love to learn what you make of options like that?
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#153I am the author of https://Nestful.app (there's some overlap, but we do not seem to compete). I have built it after being through the same ordeal, and have come to the conclusion that the tool is not the main hurdle, especially at the level of Trello or Asana, which are very high quality tools. The lack of productivity comes from the methodology those tools implement. Their methodologies contributed a whole lot but b…
Is there a way to see what your app does / how it does, without signing up with an e-mail?
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#154I might have missed it but does it support flexible recurrence for tasks? E.g. "change furnace filters every 3 months" but not on a fixed schedule but 3 months from when I last completed the task?
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#155Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#156Does it have offline support? This is the one thing I'm missing the most about Notion, Miro, Google Calendar, and all of this - offline support. In German trains, I'm offline, on flights, I'm often offline; while traveling, I'm often offline. Offline capabilities are often neglected.
It's rare to see offline support in a web app for a few reasons: LocalStorage is easy to use but too limited at 50Mb. WebSQL got deprecated by FireFox because of secuirty issues years ago ( albeit is still somewhat supported in Chrome ). The FileSystem API looked promising, and then google killed it. IndexedDb is the only option, it's slow on writes, therefore requiring major hacks like absurd-sql to be performant. I…
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#157Earlier quoted context omitted.
It's rare to see offline support in a web app for a few reasons: LocalStorage is easy to use but too limited at 50Mb. WebSQL got deprecated by FireFox because of secuirty issues years ago ( albeit is still somewhat supported in Chrome ). The FileSystem API looked promising, and then google killed it. IndexedDb is the only option, it's slow on writes, therefore requiring major hacks like absurd-sql to be performant. I…
> 2GB of persistent storage 2 GB is a lot when you store plain json document data. > IndexedDb is the only option, it's slow on writes Only when you need a new transaction per write. Writing many documents in a single tx is not slow [1] > Safari are known to delete IndexedDB after 1 week This is not really a problem because if you have not used the app for one week, you can just replicate the data from the server aga…
You can't if you haven't been able to push up the data for a week.
But in that case, you'd just have to remember to 'use it' ever day or so.
Had a use case a few years back for data collection app in remote African villages. There were definitely situations where a week without decent data access were possible, and 'offline' became a requirement.
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#158Earlier quoted context omitted.
Thanks for your feedback. Your methodology of "spontaneous productivity" is pretty interesting to me. Will take some time to check out your app. BTW, love your minimalist landing page.
I am positive it can be implement in a business oriented app to the same extent I am trying to implement it in a personal environment. And if it doesn't fit -- surely there are other methodologies that both advance the field and fit the product.
Will keep an eye on your app going forward
Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#159Re: Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.
#160Very polished, I'm impressed! It seems like everyone ends up recreating a PM or todo tool at some point. It makes me wonder if there could be a world where we have a standard protocol/api and then anyone can bring their own preferred interface?
> if there could be a world where we have a standard... Probably not.