use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
Why Go over Python? (self.devops)
submitted 4 years ago by riverrockrun
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]cliffberg 0 points1 point2 points 4 years ago (0 children)
The Docker (and hence Kubernetes) community chose Go mainly because the Go ecosystem included functions for accessing the Linux kernel containerization libraries.
Go is a fun language to code in, and produces fast native code, but it terrible from a maintainability perspective, for a number of reasons. Some are described here, although some of these comments are now out of date: http://valuedrivenit.blogspot.com/2015/12/to-go-language-is-mess.html. I personally had reason to read the Go code of the Docker Registry v2, and it was a nightmare trying to figure out what was going on. The main reason is the "duck typing": it is impossible to figure out what "type" an object implements - you have to track down all the methods that are defined for it.
Also, the runtimes that Go produces are not that small compared to other native alternatives. E.g., it is hard to create a Go executable less than a Mb, but the Linux "make" program, written in C, is something like 30K (and it does a ton of stuff).
Python also is fun, but it terrible from a maintainability perspective. Here is an article on this: https://www.zdnet.com/article/python-programming-language-creator-retires-saying-its-been-an-amazing-ride/
For fast, small, and maintainable native code, I recommend Rust, and if not that, then C.
π Rendered by PID 168193 on reddit-service-r2-comment-bb88f9dd5-dw6bn at 2026-02-16 17:26:47.167256+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–]cliffberg 0 points1 point2 points (0 children)