康威定律.md 概述Organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations. - Melvin Conway(1967) 译文: 设计系统的组织,其产生的设计等同于组织之内、组织之间的沟 2024-09-10 domain > pm #计算机理论
命令行调试技巧.md 1. 使用 if 条件判断Bash 中最常见的条件判断方式是使用 if 语句。可以直接在命令行中使用以下格式进行条件判断: 1if [ "$var" = "value" ]; then echo "Match"; else echo "No Match"; fi 示例:12var="hello"i 2024-09-10 domain > shell
架构工作内容.md 概述架构定义 graph LR ae[Architecture Element] ie[Inter-Element Ralationship] a[Architecture] system[System] ad[Architectural Description] stakeholder[Stakeholder] view[View] 2024-09-10 domain > 架构
TLS双向认证.md 基于 HTTP 认证机制 TLS 双向认证: 优势: 增强的安全性:不仅服务器需要提供有效的证书来证明其身份,客户端也需要做同样的事情,从而增加了安全性。 减少中间人攻击的风险:因为双方都需要验证身份,这大大降低了中间人攻击的可能性。 身份确认:可以确保与预期的客户端进行通信,对于高安全要求的应用尤其重要。 劣势: 部署复杂:需要为每个客户端生成和管理证书,这可能会导致部署和维护上的复杂 2024-09-10 domain > network > 协议 #security #network
文档编写规范.md 参考链接 温玉的WIKI ruanyf的document-style-guide 产品手册中文写作规范, by 华为 写作规范和格式规范, by DaoCloud 技术写作技巧在日汉翻译中的应用, by 刘方 简体中文规范指南, by lengoo 文档风格指南, by LeanCloud 豌豆荚文案风格指南, by 豌豆荚 中文文案排版指北, by sparanoid 中文排版需求, by W3 2024-09-10 arch > 写作规范
康威定律.md 概述Organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations. - Melvin Conway(1967) 译文: 设计系统的组织,其产生的设计等同于组织之内、组织之间的沟 2024-09-10 domain > pm #计算机理论