Live data from Hacker News

Show HN: Nudges.fyi – simple, unmissable reminders via phone/text/email

nudges.fyi

1–10 of 56 posts

Show HN: Nudges.fyi – simple, unmissable reminders via phone/text/email

#1
I built this app primarily for my wife, who has tried many mainstream todo-list apps (OmniFocus, Things, and Todoist come to mind) over the years with little success. She isn't particularly interested in setting up a productivity system and the administrivia that goes with it. Even having to remember to look at an app once a day was far from ideal for her. This app is an attempt at a solution for anyone that fits this description, with a focus on alerting over organization.

Here's how it works: you create a nudge that's set to trigger at a given date and time, and the app phones you, texts you, or emails you (or all three) at the right moment. Nudges can trigger on a schedule, so something like "call me about monthly bills for the next month on the last day of every month" is quite easy to set up. It also works well (sample size 1, admittedly) as a supplement to a more robust GTD system. I use Things for almost everything, but my most important reminders are set up as nudges.

I've worked on this on and off for the last month or so and I think it's ready for a Show HN. There's likely some rough edges in there so I wouldn't use it for anything _critical_ just yet (let me know if you see anything that looks buggy!). I cut a lot of scope in order to release an initial version quickly; here's a list of things I'm considering adding to the app in the near future:

  - Implement something analogous to Pagerduty: create nudges that repeatedly nag you (with something like an escalation policy) until you acknowledge them
  - More notification channels: get nudges on Telegram, WhatsApp, Slack, etc.
  - Families (or teams, possibly) share a namespace and can send nudges to each other
  - Nudges that collect a response: possibly for polls, a daily diary entry, or habit tracker
  - Incoming and outgoing webhooks
  - Snooze a nudge so it re-triggers in X minutes
I work on distributed systems at my day job and haven't done frontend and CRUD things in a long while now, so building this out was a nice change of pace. If anyone's curious, the app is built with: Next.js (in static HTML mode) and Tailwind for the frontend, Go for the API server and background nudge loop, and SQLite (+Litestream) for persistence.

In any case, I'm looking for feedback from the HN community here: is this something you would use?

TL;DR: schedule reminders for yourself via phone call, text message, and/or email

(PS: the free plan doesn't allow call/SMS nudges because I'm a bit wary of spam, but if you'd like to give this a shot and can't [or don't want to] subscribe to a paid plan at this point, send me an email at tim@nudges.fyi for a 1-month code)

Show HN: Nudges.fyi – simple, unmissable reminders via phone/text/email
nudges.fyi

Re: Show HN: Nudges.fyi – simple, unmissable reminders via phone/text/email

#6
I do this through calendar notifications but I agree that there isn't as much granularity, such as "ping me X times a week but once I finish a task, stop pinging me." Calendars don't keep track of that kind of state and thus aren't well suited to this kind of productivity tracking.

I'm building something in the same space [0], the landing page is outdated but the version in my head is similar to your idea, as a mobile app in Flutter with a Rust backend API, and Twilio for the SMS, calling, and emailing.

And good for you for cutting scope and just launching! That's what I did a few weeks ago, I built a site in 24 hours, launched it on HN and Reddit, and got 20k visitors in a 48 hour span after launching [1] because I was tired of procrastinating launching products. I also got a lot of really good feedback from the launches, so now I'm learning that launching early and often is key to iterative development.

Don't worry about the pricing by the way. I'm going to make my app cost $20 a month simply to weed out people who won't take habit formation seriously. Those that want to buy it will buy it and those that won't, well, they're not really worth caring about since they're not your customers anyway.

[0] https://getartemis.app

[1] https://news.ycombinator.com/item?id=33303269

Re: Show HN: Nudges.fyi – simple, unmissable reminders via phone/text/email

#8
> the app phones you, texts you, or emails you (or all three) at the right moment

My instinct would be to get rid of this granularity and automatically notify every contact method that a user has set up. I might even require more than one at signup.

The problem that most people who’d use this kind of thing have isn’t missing reminders as much as ignoring them.

Think about a broader target audience of e.g. people who set 10 morning alarms scheduled one minute apart. You could nudge them at the set time and then again every X minutes afterward until they mark the task as completed, only allowing one snooze per task.

Re: Show HN: Nudges.fyi – simple, unmissable reminders via phone/text/email

#9

> the app phones you, texts you, or emails you (or all three) at the right moment My instinct would be to get rid of this granularity and automatically notify every contact method that a user has set up. I might even require more than one at signup. The problem that most people who’d use this kind of thing have isn’t missing reminders as much as ignoring them. Think about a broader target audience of e.g. people who…

Lol what's going to stop that type of person from just marking the task completed then? which is the equivalent of ignoring the reminder
Post reply on HN