Ntfy.sh – Send push notifications to your phone via PUT/POST
241–250 of 306 posts
Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#242Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#243Earlier quoted context omitted.
That is nice of you and you've helped them to cover server costs for the next two months. Server optimisations can help them reduce the cost further.
I appreciate the dogged pursuit of efficiency, but spending a lot of time optimizing for the current scale and getting costs from $24 per month to $10 per month (or whatever) is likely wasted time if this grows significantly. You have to be able to recognize there’s a lower bound where your costs are low enough it doesn’t matter and even saving 75% isn’t worth thr effort. The author has obviously drawn that line some…
Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#244When I was making my IoT washing machine sensor, I used Blynk.io to push notifications to my phone but of course that service became commercialised and is no longer free. I could not find any nice easy to use alternative except for Telegram which is what I use now. This service looks exactly like what I would need and I appreciate the promise to keep it open source.
https://pushover.net/ Has existed for several years. It works great for me.
Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#245Darn, I came up with this recently and thought the only competitor was pushed.io, I do have a secret ingredient. Time will tell once I’m done
Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#246This is really great! I have plenty of uses for this. Here's a quick fish function for being able to call this from a shell like `alt my message` function alt curl -d "\"$argv\"" ntfy.sh/ end
$ cat /bin/awkmail
#!/bin/gawk -f
BEGIN { smtp="/inet/tcp/0/smtp.yourISP.com/25";
ORS="\r\n"; r=ARGV[1]; s=ARGV[2]; sbj=ARGV[3]; # /bin/awkmail to from subj 0) print |& smtp
print "." |& smtp; smtp |& getline j; print j
print "quit" |& smtp; smtp |& getline j; print j
close(smtp) } # /inet/protocol/local-port/remote-host/remote-port
$ echo ricki dont lose that number | awkmail 9998675309@vtext.com me@here.com testRe: Ntfy.sh – Send push notifications to your phone via PUT/POST
#247Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#248Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#249Earlier quoted context omitted.
What does your reliability look like? Obviously no SLA but what can we really expect? Pay tier available for HA?
https://ntfy.sh/docs/faq/#what-are-the-uptime-guarantees I guarantee for nothing, since this is a spare time project. That said, I have had zero outages in 11 months, see https://ntfy.statuspage.io/ When it outgrows the single EC2 instance, I'll likely start building some distributed thingy to spread the load and do some HA things (sounds like fun). Probably just a load balancer and 2-3 instances with a rqlite backen…
Re: Ntfy.sh – Send push notifications to your phone via PUT/POST
#250Hey cool, this is my project. Happy to answer questions. Edit: I am also looking for a new opportunity. If you need a good Staff/Principal Engineer, check out my resume here: https://heckel.io/resume.pdf
Could you elaborate on how this differs from gotify?