Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
101–110 of 246 posts
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#102Earlier quoted context omitted.
Do you mean $50/month? Or maybe $5/day? I’m reading: > Ampere A1 compute… with cores billed at $0.01 per OCPU-hour and memory billed at $0.0015 per GB-hour in all regions. So for 6 cores and 32gb memory I’m calculating $78.84 per month. I’d love to get 32gb of ram for $5/month.. but it sounds too good to be true.
Looks like 4 cores and 24 GB fit inside the free tier: https://www.oracle.com/cloud/free/
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#103One of the submissions was built in Java and didn’t use Docker (I guess the person had an aversion to it). I didn’t want to bother installing Java on my machine, so Codespaces seemed like a good idea. It took less time to get it working than it would’ve to find the download link on Oracle’s website.
I’ve also used it to write a few lines of code on my iPad, but this was far from ideal.
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#104No because I want the entire development environment to run locally (and anywhere else) without WAN connectivity.
You could still totally lock it down and deny WAN access but holepunch just for your vpn of choice.
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#105Plenty of large companies are using them (I'm talking Google/FB/Microsoft and the like). You may not have heard of it because they run these systems in-house vs using a commercial service. My company switched to 100% remote dev envs a couple years ago. When you cut a branch it spins up a VM and you can connect to it from VS Code (native or browser based) or just plain SSH. It works great. The lag is not noticeable at…
Curious what you do for the people on less-than-good internet connections? Or is everybody just onsite with a business-class SLA?
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#106Plenty of large companies are using them (I'm talking Google/FB/Microsoft and the like). You may not have heard of it because they run these systems in-house vs using a commercial service. My company switched to 100% remote dev envs a couple years ago. When you cut a branch it spins up a VM and you can connect to it from VS Code (native or browser based) or just plain SSH. It works great. The lag is not noticeable at…
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#107I don't really see the appeal. We don't even use the same dev environments at work, some use vscode, others use pycharm or codeblocks or whatever. We have code locally, on github, on gitlab and in other places. Also I can't really say that I've heard anyone outside of this thread who is excited about this at all. I see people here have different ideas but personally I've never heard of it from anyone I work with or k…
To me it feels like one of things if executed really well would be amazing, but the first thing that comes to mind when I unwrap it is all of the things that could make it a bad experience. I can also concur that I work in an area a that is doing somewhat bleeding edge infra work (probably second stage adopters) and none of my colleagues or myself is actively seeking out this technology. We don’t really seem to have…
The issue is that most of my team are in that 10% and now that 90% of the company have their needs met, we're getting pressure to conform because maintaining all the physical infrastructure for a small group gets expensive. Unfortunately, we can't use cloud environments for a reasonable chunk of our work, so that really means we're get forgotten about until we complain loudly enough, no matter how friendly I am with the relevant teams.
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#108Plenty of large companies are using them (I'm talking Google/FB/Microsoft and the like). You may not have heard of it because they run these systems in-house vs using a commercial service. My company switched to 100% remote dev envs a couple years ago. When you cut a branch it spins up a VM and you can connect to it from VS Code (native or browser based) or just plain SSH. It works great. The lag is not noticeable at…
I think you're talking about spinning up a temporary environment running the code and connecting via a local IDE to inspect it, whereas OP is talking about hosting the IDE remotely.
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#109Spinup time is fast, it's easy to use VSCode remotely, and it's easy to have multiple environments for different types of projects (Python, Java, Go, etc.).
Neovim + LSP's also works perfectly if you prefer that over VSCode (via ssh)
Re: Ask HN: Is anyone using cloud dev environments (e.g. Codespaces/Replit) at work?
#110Plenty of large companies are using them (I'm talking Google/FB/Microsoft and the like). You may not have heard of it because they run these systems in-house vs using a commercial service. My company switched to 100% remote dev envs a couple years ago. When you cut a branch it spins up a VM and you can connect to it from VS Code (native or browser based) or just plain SSH. It works great. The lag is not noticeable at…
Curious what you do for the people on less-than-good internet connections? Or is everybody just onsite with a business-class SLA?
You can always develop locally if you're on the plane or w/e. In our case local builds try to use a remote runner if available if not they happen locally.