purvis | 8 years ago | on: Azure Container Instances
purvis's comments
purvis | 8 years ago | on: Show HN: Chromeless – Headless Chrome Automation on AWS Lambda
purvis | 8 years ago | on: Azure Container Instances
This sounds very similar to some ideas I've been stewing on over the past few months. One of them being a multi-cloud terraform-like tool which abstracts away the low level details of which provider an instance is provisioned onto (whichever is currently cheapest). It could also automatically determine how firewall/security groups/networking should be configured.
If you happen to create two instances in two different providers that need to communicate privately over say port 443, the security groups would be updated automatically to account for this, bridging the two providers.
One major thing to consider in doing this is the bandwidth. If you look at the fine print in these providers, the outgoing bandwidth is where they really get you. So if your backup server is in a different provider than your database, you might see some hefty data transfer fees while performing a daily backup.
Just curious, what's your background? Are you an infrastructure type, or are you a general developer who just wants a tool like you've described? Sometimes I can't tell if this is something people really want or if I've just drank too much of the infrastructure automation koolaid.
purvis | 8 years ago | on: On Password Managers
purvis | 8 years ago | on: Ask HN: How do you manage your daily non-work related tasks?
Does it get much interest from others, or are you the main user?
purvis | 8 years ago | on: Show HN: Quilt – manage data like code
purvis | 8 years ago | on: Show HN: Quilt – manage data like code
purvis | 8 years ago | on: Should I invest in startup or in crypto currencies?
purvis | 8 years ago | on: SecureLogin Authentication Protocol 1.0
I have no reason to think it's unacceptable, was just curious. Interesting project!
purvis | 8 years ago | on: SecureLogin Authentication Protocol 1.0
# user is given 20 seconds to approve the request
20.times{
sleep 1
sltoken = REDIS.get("sl:#{state}")
break if sltoken
}
https://github.com/homakov/cobased/blob/master/app/controlle...purvis | 8 years ago | on: Kubernetes by Example
I'm curious why you recommend this? I'd argue the opposite. With the declarative nature of Terraform, you can know exactly which part of your infrastructure is going to change before you actually apply it. With Ansible, this information is a bit more opaque. You basically just run the playbook and pray it goes as planned and things haven't drifted too much.
> I wonder if I could ever possibly get into that fight
I wonder this too. I've been using AWS for 4+ years at my day job(s). The main pain point for almost all users, including myself is the cost. I think a product/tool that helps companies save on cloud costs would be invaluable. The difficulty is convincing crusty old ops people that the product is something worth trying.
Anyway, after my current employer runs out of money, I'm going to do a startup of some sort. While one of my many idea was like the one we outlined above, I'm actually starting to shy away from the infra/op verticals lately.
My email's in my profile, if you ever want to bounce ideas.