November 2022 Summaries
9 posts from Coder
Filter
Month:
Year:
Post Summaries
Back to Blog
Coder, a remote development environment platform, has released version 2 (v2) with innovative features that cater to the needs of enterprises. v2 abstracts compute from development environments, allowing enterprises to choose between Kubernetes pods, container hosts, or traditional VMs. It also provides complete control over the Kubernetes pod spec and enables Dev Environments as Code via Terraform. These innovations enable Coder to cross the chasm between DevOps/Platform Engineering teams and developers, providing a reliable and scalable platform for daily coding workflows. The v2 OSS project is open-source, while the Enterprise version offers additional features such as cost management, security controls, audit logging, and support for isolated networks. Enterprises can try out v2 OSS or upgrade to v2 Enterprise for centralized security and governance controls, unlocking velocity and time-to-value.
Nov 29, 2022
1,497 words in the original blog post.
The text discusses the benefits of moving developer environments into the cloud, addressing concerns about hardware limitations, security risks, standardization issues, and cost savings. It argues that cloud-based development environments can provide faster deployment of security controls and policies, increased productivity for developers, and easier adoption and management due to support for various providers and IDEs. The text also mentions a product called Coder, which helps in managing these cloud-based dev environments effectively.
Nov 21, 2022
866 words in the original blog post.
Codespaces is a remote development platform offered by GitHub, but it's not an option for enterprise customers using self-hosted GitHub. Coder is a popular choice among these enterprises due to its support for multiple Git providers and ability to be deployed on various public clouds or on-premises networks. Coder also offers extensive IDE support, including web-based forks of VS Code and support for native thick clients like JetBrains' IDEs. While GitHub Codespaces has some advantages, such as being free for individuals, Coder's flexibility and support for a wide range of developer tools make it the preferred choice for many enterprise customers.
Nov 17, 2022
728 words in the original blog post.
The development team at Coder uses a unique approach for their development environments. They share one giant bare metal machine, which is more cost-effective than maintaining separate Kubernetes clusters in different regions. This setup allows developers to create workspaces that can burst and leverage all resources when needed. The team uses Coder v2, an open-source remote development platform, which offers flexibility and ease of use for both developers and administrators. They also have a machine set up for their Australian coworkers, with no added latency due to Coder's networking support for peer-to-peer connections.
Nov 15, 2022
640 words in the original blog post.
The text discusses a Meetup event at the Austin Office, scheduled for September 24th. It also highlights various features of Coder, including linking git providers with Coder for user authentication, managing access to templates, sharing apps within workspaces, revamped dashboard pages, creating long-lived API tokens, and running Coder with horizontal scalability and automatic failover. Additionally, it encourages users to subscribe to the monthly newsletter to stay updated on new releases.
Nov 08, 2022
194 words in the original blog post.
Joe Previte, a TypeScript engineer at Coder who maintains code-server, is hosting another Meetup at their Austin Office. In this event, he will share tips and tricks on using Coder as a tool in his workflow for creating educational content. He uses Coder to provision software development environments via Terraform on various platforms, enabling developers to have full control of their development environment and use whichever 3rd party cloud resource they want. One of the most important features of Coder is its scheduled auto-on and auto-off features, which help keep costs low by automatically shutting off after an hour if there is no activity. Joe also highlights the importance of having a distraction-free IDE with accessible colors and legible fonts for teaching technical content effectively. He shares his experience using Coder workspaces as a dedicated workspace for teaching, allowing him to focus more on creating educational content.
Nov 07, 2022
877 words in the original blog post.
Coder, a company that focuses on standardizing remote development, has released an open-source version of its v2 platform. The new platform leverages Terraform to support various types of computing and allows users to self-install Coder onto their clouds without worrying about sensitive information or network infrastructure setup. Developers can access their environments through CLI, SSH, port forwarding, JupyterLab, and other web applications. The company aims to revolutionize software development by enabling remote workflows for developers across the globe.
Nov 05, 2022
552 words in the original blog post.
The VS Code IDE was built with extensibility in mind, including adding extensions that let developers easily add languages, debuggers, linters, and other tools to their workflow. Individual developers and software providers can build and upload these extensions to an internet-hosted marketplace like Microsoft or Open VSX, where they can be searched and downloaded by other developers. However, for enterprises in regulated industries, accessing such marketplaces is not allowed, and instead, they can host their own air-gapped extension marketplace using the open-source code-marketplace project, which provides a simple API for searching and downloading extensions. This project is a small, portable Go application that can run as a standalone binary or system service, and allows developers to add extensions from a local directory or within Artifactory.
Nov 02, 2022
398 words in the original blog post.
The text describes a process of debugging a resource leak in a Go application. Key takeaways include monitoring services for leaks, looking at the rate of resource leaks, avoiding running all background jobs on the same schedule, using prime numbers to stagger job runs, and exporting or cloning real data to reproduce problems in an IDE. The author emphasizes the importance of patience and persistence in solving such issues.
Nov 01, 2022
2,076 words in the original blog post.