I created this service to solve my own problems. Setting up system crons can get real annoying when you have multiple app servers.
Show HN: Cron.io - Sharing a by-product. Should this be a full service?
11–20 of 71 posts
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#12Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#13Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#14I'm a big believer in choosing the right vocabulary. Half of the fogginess in communicating ideas comes from bad vocabulary, and matching that vocabulary to your user base.
For example, "signal" is a great word that describes the behavior. "Delegate" is also decent. "Dictionary" is not a good word. If you don't know that a dictionary is a key value store, it's not very obvious. Same with "hash"; unless you've been educated in data structures, a hash is either a mathematical function or a cannabis product.
Reason I bring it up: We don't manipulate "crons". We manipulate "jobs" in the crontab at /etc/crontab (short for cron table, I believe).
It's an exceptionally tiny nitpick of a really good idea. So keep up the good work and feel free to ignore my pedanticism.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#15Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#16Would 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?
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.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#17Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#18Would 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.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#19Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#20Earlier quoted context omitted.
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.
Do tell me you are checking robots.txt then. This has a great potential for DoS, email confirmations or not.
I appreciate your concern.