Show HN: Cron.io - Sharing a by-product. Should this be a full service?
31–40 of 71 posts
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#32It might be nice to have some examples of what the service could be used for, why it is/will be better than setting up cron manually.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#33I created this service to solve my own problems. Setting up system crons can get real annoying when you have multiple app servers.
Suggestion: Add a notify-on-failure attribute to cron jobs. If cron fails, notify via email or SMS.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#34Earlier quoted context omitted.
Suggestion: Add a notify-on-failure attribute to cron jobs. If cron fails, notify via email or SMS.
And since SMS cost money, this could be a paid service, I'm sure people would pay for it, and it might turn up enough to sustain itself.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#35I particularly hate the existing web cron services, like webbasedcron.com and others. They're poorly designed, poorly run, and poorly supported. Just looking at most of their sites you can tell they suck.
I'd pay at least $30 / month for an industrial grade web cron service (with 20 or 30 cron jobs, that can be run per minute, with variable failure thresholds), with a decent interface.
I've thought about building one, but I can't find the time to throw at another project. It'd be great if someone would do it.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#36Would creating 60 jobs polling the same URL at 1 min intervals translate to the site getting polled every second? Or is there batching/coalescing of the same-URL jobs?
The crons are spaced out over time. This is actually why i took so long to launch the site. I've used the prototype version of this for a long time. The app is written in node so it is incredibly fast, like destroy the internet fast. That is why email confirmations are required and accounts are limited to 5 crons each. I will add a captcha on account confirmation shortly as well.
haha I actually like that line a lot. Describes exactly how I feel whenever I'm using node.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#37Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#38I released a similar project on Github called Torpedo. It lets you schedule HTTP callbacks via a REST API. curl -X POST http://127.0.0.1:7931/api/callbacks/ \ -d "url=http://example.com/messages/1/send/" \ -d "eta=2012-03-25T08:00:00Z" The above will call " http://example.com/messages/1/send/ at 8am on the 25th of March. https://github.com/namsral/torpedo
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#39I've been using webcron.org for a few projects, works well enough, but my most important criteria is price for something this simple. It's really cheap, $0.00014 per request.