「 BOOK 」 四月 22, 2023
《GraphQL in Action》书摘
文章字数 23k 阅读约需 21 mins.
1.1.2 GraphQL is a specification
查看全文GraphQL operations
Queries represent
READ
operations. Mutations representWRITE
-then-READ
opera- tions. You can think of mutations as queries that have side effects.In addition to queries and mutations, GraphQL also supports...
「 BOOK 」 三月 12, 2023
《定位》书摘
文章字数 20k 阅读约需 18 mins.
- 从营销和战略的角度,我们把美国企业主流的经营哲学称为A(America)模式,把日本企业主流经营哲学称为J(Japan)模式。总体而言,A模式最为显著的特点就是聚焦,狭窄而深入;J模式则宽泛而浅显。
- “第一胜过更好”是迄今为止最有威力的定位观念。
- 动物学家用“印刻现象”来描述新生动物第一次见到生母时的情景。仅需几秒钟,幼小的动物就能永远记住母亲的形象。
- 假如你想在爱情或者商业上取得成功,就必须认识到第一个进入心智的重要性。
- 成为小池塘里的大鱼(然后扩大池塘)总好过成为大池塘里的小鱼。 ...
「 BOOK 」 一月 15, 2023
《大教堂与集市》书摘
文章字数 7.1k 阅读约需 6 mins.
豆瓣评分 8.4:https://book.douban.com/subject/25881855/
- Eric在本书中向大家展示了两种最为经典且截然不同的模式:大教堂模式和集市模式。传统大型软件公司的开发模式就像是艰难而缓慢的大教堂建造工程,它有着严密的管理和封闭的集中式结构,但在创新上、生产力上和Bug控制上却落后于集市模式。集市模式是一种并行的、对等的扁平化开发结构,其参与者大多来自于互联网上的志愿者,结构松散,来去自由,就像是一个乱糟糟的集市,但就是这 样的组织形式,却取得了像Linux...
「 BOOK 」 一月 01, 2023
《Linux in Action》书摘
文章字数 43k 阅读约需 39 mins.
1.2.1 The Linux file system
- UNIX Filesystem Hierarchy Standard (FHS)
- Figure 1.2 Common top-level directories as defined by the UNIX FHS
1.2.3 Getting things done: Linux file management tools
- “Touching” an existing file with
touch
updates its time stamp...
「 BOOK 」 十月 30, 2022
《Istio in Action》书摘
文章字数 38k 阅读约需 34 mins.
1.4.3 Meet Envoy proxy
- Envoy gives us networking capabilities like retries, timeouts, circuit breaking, client-side load balancing, service discovery, security, and metrics-collection without any explicit language or framework dependencies.
- The power...
「 BOOK 」 十月 23, 2022
《Kubernetes Patterns》书摘
文章字数 25k 阅读约需 23 mins.
- Local and distributed primitives
Annotations
- Another primitive very similar to labels is called annotations. Like labels, annotations are organized as a map, but they are intended for specifying nonsearchable metadata and for machine usage rather than...
「 BOOK 」 九月 18, 2022
GitBook 本地使用排雷,及导出基本可用的 PDF 版本
文章字数 16k 阅读约需 14 mins.
GitBook 是一个现代的文档平台,提供了基于 Markdown 等方式的在线协作编辑文档方式,并可以方便的通过浏览器阅读文档内容。
有大量的公司、开源项目等,都在使用,如 GitBook 自己的文档、Fluent Bit 等。
GitBook 团队曾经还提供过一个离线的命令行工具和 Node.js 类库 - gitbook,用来在本地离线环境使用 Markdown 或 AsciiDoc 构建一个电子书,遗憾的是目前这个项目已经被弃用了。
虽然 GitbookIO 的这个 gitbook
工具...
「 BOOK 」 八月 14, 2022
《Go in Action》书摘
文章字数 42k 阅读约需 38 mins.
1.1.2 Concurrency
- Channels help to enforce the pattern that only one goroutine should modify the data at any time.
- … channels are used to send data between several running goroutines.
- If your
main
function doesn’t exist in packagemain
, the build tools...