上一篇 blog 提到使用 docker 启动一个容器若是没有使用--name
来指定容器名字的话,docker 会自动按照 形容词_名人名
的形式生成一个.linux
那这些名人是谁呢?git
源代码说明一切 /pkg/namesgenerator/names-generator.go#L105程序员
// Docker, starting from 0.7.x, generates names from notable scientists and hackers.
// Please, for any amazing man that you add to the list, consider adding an equally amazing woman to it, and vice versa.github
自 0.7.x docker 用一些著名的科学家和黑客名字来命名容器. 若是有你认为有尚未在这些列表中的话,给 docker 项目提交. 哈哈,想给牛逼项目提交 pr 吗? 又多了一个路子.docker
如今这个模块里面一共有160个名字,其中也有一些女性的科学家. 经过 grep 搜了下 female 只有6个. 因此刚才的注释也鼓励你提交一些牛逼的女性科学家或者黑客.ide
每一个名人名字前面都会有1句很简单的介绍,而后带上对应的 wiki 的连接. 先翻译几个你们耳熟能详的几个名字吧.翻译
// Nikola Tesla invented the AC electric system and every gadget ever used by a James Bond villain. https://en.wikipedia.org/wiki/ // 特斯拉: 发明了交流电和全部007反派使用的 "tesla", // Ken Thompson - co-creator of UNIX and the C programming language - https://en.wikipedia.org/wiki/Ken_Thompson // 汤普森: unix 和 C 的联合创始人.(笔者注: 堪称程序员的祖师爷) "thompson", // Linus Torvalds invented Linux and Git. https://en.wikipedia.org/wiki/Linus_Torvalds // 林纳斯: geek 之神 发明了 linux 和 git "torvalds", // Alan Turing was a founding father of computer science. https://en.wikipedia.org/wiki/Alan_Turing. // 图灵: 计算机科学之父. (14年的电影: [模仿游戏](https://movie.douban.com/subject/10463953/) 很是值得一看) "turing",
固然除了人名以外还有93个超有意思的形容词,背好这几个单词赞赏别人的时候就不怕词穷;固然骂别人也同样不怕没词. : punix
但愿你们喜欢.code