Love it. I'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'v…
Since you're being pedantic, the word you were looking for was "pedantry", not pedanticism :-)
Show HN: Cron.io - Sharing a by-product. Should this be a full service?
61–70 of 71 posts
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#62Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#63Interesting idea...however, in my case I keep most of my crons in a directory not accessible through a browser, so that someone can't accidentally come across and run one manually. Am I the only one that does this? I also have crons that run to perform maintenance/clean-up and backup on files/databases (either daily or weekly) and it sound like this service wouldn't work in that case, unless the scripts were changed…
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#64Earlier quoted context omitted.
But there are a lot of free cron service using a real interface and not an API.
An API is more flexible. For example, the code being called could itself adjust the job parameters to fit its needs dynamically. Or you could have a pre-packaged solution that the user can install on a shared hosting server that automatically sets up the cron job.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#65Earlier quoted context omitted.
Well the problem with that is, what happens when the atom machine dies. Or the ISP cuts you off? People outsource services not because they can't make a cheap version themselves but because it can be a hassle.
Ok. What happens when the 3rd party service is acquired and shuts down, or shuts down due to lack of funds? I've got several machines that have been running non-stop for 3-5 years, and I've had several services I've relied on that have shutdown after being acquired, so there seems to be a need for a backup solution either way. People that derive their income from providing 3rd party services seem to have a bias in fa…
p.s. Flattered you care ;)
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#66Earlier quoted context omitted.
I'm not the person you're replying to, but someone that disagrees with you. I run multiple servers, at this minute there's 8 web servers online and 1 mysql server. Each server has a different purpose, some are long term and some are short term (taken offline after purpose served). Having to manage the cron jobs running on each server is a pain, having 8 servers all running different things is fine if you have the tim…
>Having to manage the cron jobs running on each server is a pain Agreed, that's why you would use a single, cheap Atom box sitting under your desk managing all of your cron jobs. >spending an hour to save $20 isn't worth it This isn't saving $20, it is saving $240 per year , so having your own hardware is break-even for year one. Year two is essentially free. >it's the same reason I use Postmark [...] for my email Em…
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#67Very cool. And kudos on the clean documentation.
Great job, keep it up.
Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#68Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#69Re: Show HN: Cron.io - Sharing a by-product. Should this be a full service?
#70Would 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.