Home
fozu的技术站
Cancel

micro service

微服务 做微服务需考虑的点 服务注册与发现 负载均衡

computer - work flow

工作流 业务过程的部分或整体在计算机应用环境下的自动化 是对工作流程及其个操作步骤之间业务规则的抽象、概括、描述。 应用 CRM系统 ERP系统 OA系统

endnianness

Endianness A big-endian system stores the most significant byte of a word at the smallest memory address and the least significant byte at the largest. 先存储(低地址)most significant byte. A littl...

distributed service

分布式 不同模块部署在不同机器上 负载均衡的一种方式

data transfer format

XML 体积较大 结构严谨 XSD 对XML的格式做校验 XCF 配置文件 SOAP 用于交换结构化文档的协议 JSON 体积轻量 结构不严谨 可读性差 性能高 序列化 体积最小 性能最高 面向对象 可读性最差

windows fonts

添加字体 reference 邮件单击 -> 安装 所有字体都存储在C:\Windows\Fonts目录下,所以也可将字体直接放在该文件夹下,Windows将自动安装 快速打开环境变量编辑界面 rundll32 sysdm.cpl,EditEnvironmentVariables shortcuts undo: ctrl + Z redo: ctrl + Y

typora

常用快捷键(Win) Code: Ctrl + Shift + ` Strong: Ctrl + B Emphasis: Ctrl + I Hyperlink: Ctrl + K

powershell

references ss64 lean.microsoft.com learn.microsoft.com Q&A Error “The goal you specified requires a project to execute but there is no POM in this directory” after executing maven command ...

maven

commands generating projects mvn archetype:generate mvn archetype:generate "-DgroupId=com.fozu.helloworld" "-DartifactId=helloworld" "-Dversion=1.0-RELEASE" "-DarchetypeGroupId=org...

ios objective-c interview outline

OC对象 实例对象的isa & ISA_MASK = 类对象地址 类对象isa & ISA_MASK = 元类对象地址 源码:objc-runtime-new.h objc_object struct objc_object { private: isa_t isa; pub...