TNS
VOXPOP
Will JavaScript type annotations kill TypeScript?
The creators of Svelte and Turbo 8 both dropped TS recently saying that "it's not worth it".
Yes: If JavaScript gets type annotations then there's no reason for TypeScript to exist.
0%
No: TypeScript remains the best language for structuring large enterprise applications.
0%
TBD: The existing user base and its corpensource owner means that TypeScript isn’t likely to reach EOL without a putting up a fight.
0%
I hope they both die. I mean, if you really need strong types in the browser then you could leverage WASM and use a real programming language.
0%
I don’t know and I don’t care.
0%

Containers

 
OVERVIEW

Cloud native computing relies on containers as a common denominator. The platform allows software programs to be easily moved between systems, even ones with different architectures, by providing a universal platform. App containers package code and dependencies together at the app layer.

Containers serve as the base common denominator for cloud native computing. They offer a universal platform to package software programs so they can be easily moved around to different systems, even those with different architectures.

Like any modern technology, containers have actually been around for decades. FreeBSD offered “jails” in the early 2000s, and Solaris containers were a key part of offering secure, flexible platforms for applications running on Sun Micrososystems’ own Unix platform. In 2008, the idea of container became a core part of the Linux kernel with the introduction of LXC (LinuX Containers), implemented with cgroups and Linux namespaces.

While LxC was used by Google to manage its own infrastructure, it wasn’t until the advent of Docker, nuanced in 2013, did developers embrace abstraction, because it gave them an easy way to move software from development to production without any manual restaging. Mass-use of containers spurned development of container orchestraters such as Kubernetes and Docker Swarm.

Although Docker open sourced its container technology, additional effort has gone on to move the technology to independent open source governance, by way of projects such as runC, Containerd and the Moby Project. Additionally, more work has been undertaken to build containers that are both more secure and performant, such as Kata Containers.

MORE
FULL CONTAINERS ARCHIVE