├── .github ├── FUNDING.yml └── workflows │ └── mirror_to_gitee.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── .typos.toml ├── 3d graphics & modeling ├── 3d-printing │ └── README.md ├── README.md ├── Unreal Engine 5 │ └── README.md ├── blender │ └── README.md ├── taichi │ └── README.md └── 创造性编程.md ├── AI & Data-Science ├── README.md ├── _img │ ├── AI ML DL DataMining.jpg │ ├── numpy-cheat-sheet.webp │ └── pandas-cheat-sheet.webp ├── ai-infra │ └── README.md ├── deep learning │ ├── CPU - AI Accelerating.md │ ├── Nvidia CUDA.md │ ├── README.md │ ├── emotional-tts │ │ └── README.md │ ├── image-super-resolution │ │ └── README.md │ ├── large-language-model │ │ └── README.md │ ├── nerf-3d-models │ │ └── README.md │ ├── neural networks.ipynb │ ├── speech-recognization │ │ └── README.md │ ├── stable-diffusion │ │ └── README.md │ └── vocal synthesizer │ │ └── README.md ├── matplotlib.ipynb ├── numpy-cheat-sheet.ipynb └── pandas-cheat-sheet.ipynb ├── CI-CD ├── CICD 领域也没有银弹.md ├── README.md ├── drone │ ├── README.md │ └── docker-compose.yml ├── gitlab-ci │ └── README.md ├── jenkins │ ├── Bugs.md │ ├── README.md │ ├── jenkins-master │ │ ├── README.md │ │ └── docker-compose.yml │ ├── jenkins-slave │ │ ├── README.md │ │ └── docker-compose.yml │ └── jenkinsfile-templates │ │ ├── README.md │ │ ├── batch-job.Jenkinsfile │ │ ├── parallel-jobs.Jenkinsfile │ │ └── sonarscanner.Jenkinsfile ├── kubernetes │ ├── README.md │ ├── argo │ │ ├── README.md │ │ └── examples │ │ │ ├── build-ci-images.yaml │ │ │ ├── build-package.yaml │ │ │ └── build_image.yml │ ├── buildkit.md │ └── tekton │ │ └── README.md ├── machine learning │ └── README.md └── 常见问题.md ├── CNAME ├── LICENSE.md ├── Notes.md ├── README.md ├── acoustics └── README.md ├── algorithm ├── B 树、B+树、红黑树.md ├── README.md ├── _img │ └── distributed-unique-id-algorithms.webp ├── 分布式短链算法.md ├── 唯一 ID 生成算法.md ├── 基数树 RadixTree 前缀树 Trie.md └── 算法分析-基础.md ├── astrophotography ├── README.md └── gears.md ├── blockchain ├── Blockchain Wallet.md ├── Ethereum Basics.md ├── Ethereum Virtual Machine.md ├── README.md ├── 分布式数据库的一致性问题与共识算法.md ├── 区块链与 Web3.md └── 零知识证明.md ├── china ├── README.md └── 叫魂:1768 年中国妖术大恐慌.md ├── cloud-provider ├── README.md ├── alicloud │ ├── CDN 缓存策略.md │ ├── README.md │ ├── 对象存储服务.md │ └── 阿里云云服务 - Bugs汇总.md ├── aws │ ├── AWS 流量成本.md │ ├── Athena │ │ ├── ALB 请求日志分析.md │ │ ├── AWS 服务日志转换.md │ │ ├── Athena 成本分析.md │ │ ├── Flow Log 数据分析.md │ │ └── REAME.md │ ├── CloudFront CDN.md │ ├── CloudWatch.md │ ├── EC2 │ │ ├── ASG 伸缩组.md │ │ ├── EBS 与 EBS 快照.md │ │ ├── README.md │ │ ├── Spot 实例.md │ │ ├── 特殊的 EC2 类型.md │ │ └── 网络限制.md │ ├── EKS.md │ ├── ELB 负载均衡.md │ ├── IAM 权限控制.md │ ├── Linux 发行版.md │ ├── README.md │ ├── S3.md │ ├── VPC.md │ ├── 存储与数据库.md │ ├── 成本分析.md │ └── 监控.md ├── gcp │ ├── README.md │ └── 成本分析.md ├── multicloud │ ├── README.md │ ├── _img │ │ ├── MCNS_Features.png │ │ ├── gloo-mesh-multi-cluster.svg │ │ ├── gloo-multi-cluster-api-gateway.webp │ │ ├── google-multi-cluster-gateway.svg │ │ └── multi-cloud-and-stacks-of-envs.webp │ ├── 多云网络与统一网关.md │ ├── 跨云应用管理平台.md │ └── 跨区流量处理方案.md └── tencentcloud │ ├── CDN 动态打包服务.md │ └── README.md ├── computer-science ├── IO模型 - 同步与异步.md ├── README.md ├── csapp │ └── README.md └── 求余与取模的差别.md ├── config-management ├── README.md ├── apollo │ ├── README.md │ ├── docker-compose.yml │ └── sql │ │ ├── apolloconfigdb-dev.sql │ │ ├── apolloconfigdb-fat.sql │ │ ├── apolloconfigdb-uat.sql │ │ └── apolloportaldb.sql └── vault │ ├── README.md │ └── docker-vault │ ├── config.hcl │ └── docker-compose.yml ├── container ├── Dockerfiles.md ├── Podman 笔记.md ├── README.md ├── Skopeo 笔记.md ├── _imgs │ ├── Container-Standards-Work-Podman-vs_-CRICTL.png │ └── docker-architecture.jpg ├── containerd 笔记.md ├── docker │ ├── Docker 数据持久化.md │ └── README.md ├── nsenter.md ├── sync_images.py ├── systemd-nspawn.md ├── 容器安全.md ├── 容器镜像与加速.md └── 容器镜像相关问题.md ├── datastore ├── README.md ├── SQLite.md ├── artifactory │ ├── README.md │ ├── harbor │ │ └── README.md │ └── nexus3 │ │ ├── README.md │ │ └── docker-compose.yml ├── clickhouse │ ├── README.md │ ├── best-practices │ │ └── README.md │ ├── clustering │ │ └── README.md │ ├── merge-tree-engine │ │ └── README.md │ ├── monitoring │ │ └── README.md │ ├── performance-tuning │ │ └── README.md │ ├── quickstart │ │ └── README.md │ ├── realtime-analytics │ │ └── README.md │ └── schema-design │ │ └── README.md ├── elasticsearch │ ├── ElasticSearch Cluster │ │ └── README.md │ ├── Kibana 数据分析.md │ ├── Logstash 数据管道.md │ └── README.md ├── etcd │ ├── README.md │ ├── docker-compose.yml │ ├── etcd 的备份与恢复.md │ └── etcd_with_systemd.md ├── message queue │ ├── README.md │ ├── kafka │ │ └── README.md │ └── pulsar │ │ └── README.md ├── mongo │ ├── replicaset │ │ ├── README.md │ │ ├── docker-compose-replicaset.yml │ │ └── docker-compose-single.yml │ └── sharding │ │ └── README.md ├── mysql │ ├── MySQL 协议.md │ ├── MySQL 架构与其中的锁.md │ ├── README.md │ ├── in-memory │ │ ├── create_databases.sql │ │ └── docker-compose.yml │ ├── mysql cluster - vitess │ │ └── README.md │ └── normal │ │ ├── create-databases.sql │ │ └── docker-compose.yml ├── postgresql │ ├── CHANGELOG.md │ ├── README.md │ ├── admin │ │ └── README.md │ ├── backup-recovery │ │ └── README.md │ ├── basics │ │ └── README.md │ ├── best-practices │ │ └── README.md │ ├── data-types │ │ └── README.md │ ├── examples │ │ └── README.md │ ├── extensions │ │ └── README.md │ ├── functions │ │ └── README.md │ ├── indexes │ │ └── README.md │ ├── mysql-comparison │ │ └── README.md │ ├── performance │ │ └── README.md │ ├── plugins │ │ └── README.md │ ├── security │ │ └── README.md │ ├── table-partitioning │ │ └── README.md │ └── troubleshooting │ │ └── README.md ├── redis │ ├── README.md │ ├── docker-compose-cache.yml │ └── docker-compose-store.yml ├── 关系数据库与非关系数据库.md └── 数据序列化.md ├── devops ├── Everything as Code.md ├── README.md ├── _imgs │ └── Develop-Publish-Reliability.png └── 什么是 DevOps.md ├── drawing └── README.md ├── dsp ├── README.md ├── digital singal processing │ └── Fourier expansion.ipynb └── signals and systems │ ├── 0. overview.ipynb │ ├── 1.1 信号.ipynb │ ├── 1.2 系统.ipynb │ ├── 2.0 连续系统的时域分析.ipynb │ ├── 2.2 冲激响应.ipynb │ ├── 2.3. 卷积积分.ipynb │ ├── 2.3.1 卷积积分的性质.ipynb │ ├── 3. 信号的频谱分析.ipynb │ ├── 3.5 周期信号的 FT.ipynb │ ├── 4. 频谱分析技术的应用.ipynb │ ├── 5. LT 与 ZT.ipynb │ ├── 6. 系统的变换域分析.ipynb │ ├── LTI-system-features-h(t).png │ ├── LTI-system-function.png │ ├── block-diagram-1.png │ ├── chapter-2-overview.png │ ├── conv-test.png │ ├── convolution-LTI.png │ ├── convolution-features-prove.png │ ├── convolution-features.png │ ├── convolution-sum-methods.png │ ├── deconvolution.png │ ├── get-system-func-by-equations.png │ ├── get-system-func-by-impulse-resp.png │ ├── image-processing.png │ ├── multi-dimension_convolution.png │ ├── overview.png │ ├── response-type.png │ ├── system-steady.png │ ├── tmp.gif │ └── 时域与频域的性质对比.png ├── electrical-engineering ├── 8051 │ └── README.md ├── Bootloader 之争.md ├── README.md ├── VSCode C C++ 开发环境搭建.md ├── drone │ └── README.md ├── esp32 │ ├── 2_ws2812_led.md │ ├── 3_esp32cam.md │ ├── 4_sd_card.md │ ├── 5_hid_remote_keyboard_mouse.md │ ├── README.md │ ├── _img │ │ ├── ESP32-CAM-FTDI-programmer-5V-supply.webp │ │ ├── ESP32-CAM-pinout-new.webp │ │ ├── WS2812B-Addressable-RGB-LED-pinout-diagram.jpg │ │ ├── WS2812B-RGB-Led-Strip.jpg │ │ ├── WS2812_LED_result.webp │ │ ├── sd-card-pinout.png │ │ ├── usb3.0-plug-pin-layout.jpg │ │ └── usb3.0-receptacle-pin-layout.webp │ └── learn-esp-idf.md ├── fpga │ ├── README.md │ ├── digital-circuit.md │ ├── execercises │ │ ├── modules │ │ │ ├── 256-to-4-multiplexer.v │ │ │ ├── adder_subtractor.v │ │ │ ├── carry_select_adder.v │ │ │ └── full_adder.v │ │ └── procedures │ │ │ └── priority_encoders.v │ ├── tang-9k-fpga.md │ └── verilog_note.md ├── interface-protocol │ ├── HDMI.md │ ├── PCIe.md │ ├── README.md │ ├── _img │ │ ├── PCI-SIG_Law_Graphic_FINAL.webp │ │ └── luatos-esp32s3-dvp-port.png │ ├── 存储器的种类、接口与协议.md │ └── 流媒体接口与协议.md ├── luatos │ ├── README.md │ └── _img │ │ └── air780e-air700e-autoboot.jpg ├── lubancat-zero-w │ └── README.md ├── raspberrypi │ ├── README.md │ ├── robot_arm_pi.py │ └── robot_car_pi.py ├── risc-v │ ├── README.md │ ├── milkv.md │ └── qemu-riscv.md ├── rk3588 │ ├── Dockerfile.rknn_toolkit2_1.4.0 │ ├── Orange Pi 5 镜像编译.md │ ├── README.md │ └── yolov5_rknn_toolkit2_demo │ │ ├── README.md │ │ ├── convert_and_run_locally.py │ │ ├── yolo_video_rk3588_npu.py │ │ └── yolov5s.rknn ├── sipeed │ ├── M0s.md │ ├── M1s.md │ ├── README.md │ ├── longan-nano.md │ └── m3axpi.md ├── stm32 │ └── README.md ├── 导热硅胶片与散热片.md └── 嵌入式领域的一些现象.md ├── filesystem ├── Linux 文件系统介绍.md ├── README.md ├── btrfs.md └── 在Linux上搭建ISCS网络存储.md ├── flake.lock ├── flake.nix ├── frontend ├── HTML XML 转义字符 (Escaping Characters).md └── README.md ├── gamedev ├── README.md ├── bevy.md └── ldtk.md ├── games ├── README.md ├── _img │ └── quest-2-airlink-setup.webp ├── beat-saber.md ├── slimevr-full-body-tracking.md └── vrchat.md ├── git ├── Git 笔记.md ├── README.md ├── gitall.py ├── gitea │ ├── README.md │ └── docker-compose.yml └── gitlab │ ├── README.md │ ├── docker-compose.yml │ ├── gitlab_helper.py │ └── pre-receive.d │ └── check_commit_message_style.py ├── homelab ├── Homelab 功耗调节.md ├── Linux 性能测试.md ├── Network Attached Storage.md ├── Operating System Installer.md ├── Proxmox PCI 直通.md ├── README.md ├── _img │ ├── dashy-homepage-2022-11-29.webp │ ├── intel-pl1-pl2-tau.png │ ├── my-homelab-2022-11-23.webp │ ├── my-homelab-2023-02-09.webp │ ├── my-homelab-internal-2022-11-06.webp │ ├── ryan-pve-console-2022-11-29.webp │ └── ryan-pve-console-2023-05-30.webp ├── android phone │ └── README.md ├── home-automation │ ├── ESPHome.md │ ├── README.md │ └── _img │ │ ├── ESP32-CAM-FTDI-programmer-5V-supply.webp │ │ └── ESP32-CAM-pinout-new.webp ├── router&switcher │ ├── Linux 配置多网卡多IP.md │ ├── OpenWRT 系统.md │ ├── README.md │ └── 有线路由 ER-X 配置笔记.md └── 数据备份与同步.md ├── infrastructure ├── README.md ├── ansible │ ├── 1. 免密登录与主机清单配置.md │ ├── 2. Module.md │ ├── 3. Playbook.md │ ├── 4. Roles.md │ └── README.md ├── pulumi │ └── README.md ├── terraform │ ├── README.md │ ├── backup-terraformer.md │ └── tls-certs.tf └── 基础设施的管理与维护.md ├── kubernetes ├── K8s Job.md ├── Kubernetes CHANGELOG.md ├── Kubernetes Events.md ├── Kubernetes 常见错误、原因及处理方法.md ├── Kubernetes 最佳实践.md ├── Pod 中的容器启动顺序、终止顺序.md ├── README.md ├── Statefulset.md ├── apiserver extension │ └── README.md ├── autoscaling - cluster │ ├── README.md │ ├── aws-autoscaler.md │ ├── aws-karpenter.md │ ├── aws-node-termination-handler.md │ └── node-problem-detector.md ├── autoscaling - pod │ ├── Horizontal Pod Autoscaler.md │ ├── KEDA.md │ ├── README.md │ └── prometheus-adapter.md ├── cloud os.md ├── cloud-ide │ └── eclipse-che.md ├── code_analysis │ ├── README.md │ └── kube_proxy.md ├── configuration-management │ ├── README.md │ ├── helm │ │ └── README.md │ └── kustomize │ │ └── README.md ├── continous-delivery │ ├── README.md │ ├── argo-rollouts │ │ └── README.md │ └── flagger │ │ ├── custom-values.yaml │ │ └── README.md ├── dashboard │ └── README.md ├── finops │ ├── Kubernetes 集群的成本分析与优化.md │ └── README.md ├── gitops │ ├── README.md │ ├── argocd │ │ └── README.md │ └── fluxcd │ │ └── README.md ├── ingress-egress │ ├── Kong.md │ ├── README.md │ ├── _img │ │ └── api-gateway-plus-istio.png │ ├── gateway-api.md │ └── traefik.md ├── kubectl 常用命令.md ├── kubectl-debug.md ├── kubernetes 控制面故障现象及分析.md ├── kubevirt │ └── README.md ├── metrics │ ├── README.md │ ├── events-expoter.md │ ├── kube-stat-metrics.md │ ├── metrics-server.md │ └── pixie - kubernetes-observability.md ├── multicluster │ └── README.md ├── network │ ├── README.md │ ├── Service.md │ ├── cilium │ │ └── README.md │ ├── kubernetes 中的负载均衡.md │ ├── 为外部服务创建 K8s Service.md │ ├── 使用 Kubernetes 部署边缘网关.md │ ├── 基于拓扑的路由或转发策略.md │ └── 将服务暴露到外部.md ├── platform │ ├── README.md │ ├── dapr │ │ └── README.md │ └── knative │ │ └── README.md ├── programming │ └── README.md ├── scheduler │ └── README.md ├── security │ ├── Open Policy Agent.md │ ├── RBAC.md │ ├── README.md │ ├── aws-iam-and-kubernetes.md │ ├── cert-manager.md │ ├── kyverno.md │ └── oidc-provider.md ├── service_mesh │ ├── README.md │ └── istio │ │ ├── CHANGELOG.md │ │ ├── Egress.md │ │ ├── Envoy Sidecar 细节分析.md │ │ ├── Ingress.md │ │ ├── Istio 数据面 - Envoy.md │ │ ├── Istio 的 DNS 智能代理.md │ │ ├── Istio 监控告警.md │ │ ├── Istio 自定义资源介绍.md │ │ ├── Istio 超时重试与请求幂等性.md │ │ ├── README.md │ │ ├── ambient-mode │ │ └── README.md │ │ ├── common-ingressgateway.yaml │ │ ├── envoyfilters │ │ ├── direct_response.yaml │ │ ├── enable-accesslog.yaml │ │ ├── gzip-stats.yaml │ │ ├── path-classification.yaml │ │ ├── remove-envoy-response-headers.yaml │ │ └── rewrite-host-header.yaml │ │ ├── istio-operator-values.yaml │ │ ├── kiali 流量观测.md │ │ ├── kiali-operator-values.yaml │ │ ├── 如何将服务从 HTTP 迁移到 gRPC.md │ │ ├── 最佳实践.md │ │ ├── 服务治理的执行位置.md │ │ ├── 流量管理.md │ │ └── 跨集群的服务网格.md ├── storage │ ├── README.md │ ├── minio │ │ └── README.md │ └── rook-ceph │ │ └── README.md ├── 如何升级一个 Kubernetes 集群.md ├── 理解 Kubernetes 的基本调度单位-Pod.md ├── 节点数量vs节点规格.md └── 部署一个 Kubernetes 集群.md ├── linux ├── Linux IO 性能问题与解决思路.md ├── Linux 中如何同时运行多个进程.md ├── Linux 主机安全设置.md ├── Linux 内存泄漏问题排查.md ├── Linux 各发行版常用配置.md ├── Linux 应用安全.md ├── Linux 性能监控与故障排查:主要性能指标说明及监控方法.md ├── Linux 的开机流程、module 管理与 Loader.md ├── Linux 进程管理.md ├── Linux 集群的漏洞检测与修复方案.md ├── Linux-Kernel-Releases.md ├── Linux系统编程 │ └── README.md ├── README.md ├── _img │ ├── i3wm-keyboard-layer1.png │ ├── i3wm-keyboard-layer2.png │ ├── intel-pl1-pl2-tau.png │ └── node-exporter-high-io-wait.webp ├── cli-tools.md ├── debian-on-luks2.md ├── desktop │ ├── README.md │ ├── bluetoothctl 的使用.md │ ├── endeavour-i3wm.md │ └── endeavour-sway.md ├── disk │ ├── Linux LVM 逻辑卷管理.md │ ├── Linux 分区与文件系统.md │ ├── Linux 磁盘占用的排查流程.md │ ├── fstab 与自动挂载.md │ └── 使用 dd 命令备份与恢复硬盘.md ├── ebpf │ ├── README.md │ ├── flake.lock │ └── flake.nix ├── guix │ └── README.md ├── linux-syscall-monitoring.md ├── network │ ├── nftables.md │ └── tproxy.md ├── nixos │ ├── README.md │ ├── nix-darwin.md │ └── nixpkgs-workflow.md ├── nushell.md ├── tools │ ├── GNU coreutils 源码阅读笔记.md │ └── 命令行查看图片视频.md ├── zswap-vs-zram.md ├── 常见问题排查指南.md ├── 性能优化 │ ├── Linux 504 超时丢包问题解决思路.md │ ├── README.md │ ├── 动态追踪技术.md │ └── 参数调优.md ├── 性能问题排查路径.md ├── 深入学习 Systemd.md ├── 系统服务 daemon - systemd │ ├── README.md │ ├── 使用 supervisord 设置应用开机启动.md │ └── 通过 systemd 设置自定义 Service.md └── 远程桌面.md ├── math ├── README.md └── linear algebra │ ├── 0. 什么是线性代数.ipynb │ ├── 1. 矩阵乘法.ipynb │ ├── 2. 线性方程组.ipynb │ ├── 3. 矩阵的逆与LU分解.ipynb │ ├── 4. 置换矩阵、转置矩阵、对称矩阵.ipynb │ ├── 5. 向量空间.ipynb │ ├── 6. 秩、基、范数.ipynb │ └── Matrix_transpose.gif ├── multimedia └── ffmpeg.md ├── music ├── README.md ├── instruments synthesizer │ └── README.md ├── instruments │ ├── README.md │ ├── 口琴 │ │ ├── README.md │ │ └── 复音口琴-基础练习.md │ └── 笛箫 │ │ ├── README.md │ │ ├── image │ │ ├── 竹笛指法表.png │ │ └── 竹笛转调表.jpg │ │ ├── 竹笛的音域与转调.md │ │ └── 该选择何种调号的竹笛及指法.md ├── scores │ ├── README.md │ ├── 你怎么说-简谱.gif │ ├── 你把相思赋予谁-简谱.gif │ ├── 八辈子-piano.mid │ ├── 好一朵茉莉花-笛箫-简谱.jpg │ ├── 梁祝-竹笛-简谱.png │ ├── 梦里水乡-竹笛-简谱.png │ ├── 步步高-二胡-简谱.jpg │ ├── 爱尔兰画眉-口琴-简谱&五线谱.jpg │ ├── 送你一朵山茶花-简谱.gif │ ├── 送别-笛箫-简谱.jpg │ ├── 醉梦-简谱.jpg │ └── 飞雪玉花-简谱.png ├── sonic-pi │ ├── README.md │ └── life.rb ├── theory │ ├── image │ │ ├── 2-大和弦的符号.png │ │ ├── 25230031-c61ee624ca7b46569db31f52437438c5.png │ │ ├── 3-小和弦的符号.png │ │ ├── 4-属和弦的符号.png │ │ ├── 5-和弦的转位.png │ │ ├── 6-add和弦.png │ │ ├── 7-sus和弦.png │ │ ├── 8-omit和弦.png │ │ ├── 9-括号的意义.png │ │ ├── Figured_Bass.png │ │ ├── IMG_20170706_010452.jpg │ │ ├── IMG_20170712_160929.jpg │ │ ├── Screen-Shot-2015-07-20-at-5-59-54-PM.png │ │ ├── 七个基本和弦的功能.png │ │ ├── 七个调名.png │ │ ├── 三个最重要的和弦的功能.png │ │ ├── 五度相生律.png │ │ ├── 其他和弦的符号.png │ │ ├── 副属和弦.png │ │ ├── 和弦符号.png │ │ ├── 和弦走向图.png │ │ ├── 大调音阶.png │ │ ├── 小十一和弦.png │ │ ├── 屏幕截图(2).png │ │ ├── 自然小调.png │ │ ├── 调号原理-2.png │ │ ├── 调号原理.png │ │ ├── 调式中的音级.png │ │ ├── 调式总结.png │ │ ├── 调式来源.png │ │ ├── 音程.png │ │ └── 音程_(2).png │ ├── 中国调式.md │ ├── 乐理基础.md │ ├── 五线谱.md │ ├── 五线谱调号的判别与书写原理.md │ ├── 和弦的功能(以C大调为例).md │ ├── 和弦的口味.md │ ├── 和弦的符号.md │ ├── 和弦进阶.md │ ├── 和弦配置新招法.md │ ├── 唱名法之争 - 首调与固定调.md │ ├── 扒谱.md │ ├── 给歌曲配和弦.md │ ├── 调式详解.md │ └── 音的强弱变化.md └── vocal synthesizer │ ├── ACE.md │ └── README.md ├── natural-language └── english │ ├── README.md │ ├── _img │ ├── english-vocab-by-age-and-reading-habit.jpg.webp │ ├── vocabulary-growth-per-day-by-reading-habits.jpg.webp │ └── vocabulary-size-by-age.jpg.webp │ ├── 为什么一定要撸英文小说.md │ └── 练习英语口语的办法-恶魔奶爸.md ├── network ├── README.md ├── esim │ └── README.md ├── network-tools │ ├── README.md │ └── 使用WireShark嗅探并解密TLS数据.md ├── other │ ├── DHCP 协议.md │ ├── _imgs │ │ └── dhcp_flow.png │ ├── 使用 IPVS 进行负载均衡.md │ ├── 查询主机公网 IP.md │ ├── 网络代理与科学上网.md │ └── 高性能网络处理技术.md ├── protocols │ ├── IP TCP UDP 的首部字段对比.md │ ├── README.md │ ├── _img │ │ ├── socket-state-machine.png │ │ └── tcp-packet-head.png │ ├── 第一层:物理层.md │ ├── 第七层-应用层 │ │ ├── HTTP Method 及 MIME 类型.md │ │ ├── HTTP1协议.md │ │ ├── HTTP2 协议.md │ │ ├── HTTP3 协议.md │ │ ├── gRPC 协议.md │ │ ├── ssh 协议.md │ │ └── 路由器的 ALG.md │ ├── 第三层-网络层 │ │ ├── Anycast IP Address.md │ │ ├── BGP 动态路由协议.md │ │ ├── BGP 协议.md │ │ ├── IP 协议.md │ │ ├── IPv6 │ │ │ ├── FAQ.md │ │ │ ├── IPoE & IPv6.md │ │ │ └── README.md │ │ ├── NAT 网关.md │ │ ├── OSPF 路由协议.md │ │ ├── README.md │ │ └── VRRP 协议.md │ ├── 第二层:数据链路层.md │ └── 第四层-传输层 │ │ ├── README.md │ │ ├── Socket 状态变迁图及命令行查看方法.md │ │ └── TCP 协议.md ├── proxy&server │ ├── HTTP Headers 的转发策略.md │ ├── README.md │ ├── _imgs │ │ ├── forward-proxy-flow.svg │ │ └── reverse-proxy-flow.svg │ ├── apisix │ │ ├── APISIX API 介绍.md │ │ ├── ETCD 高可用问题.md │ │ ├── README.md │ │ ├── _img │ │ │ └── flow-plugin-internal.png │ │ ├── 如何编写 APISIX lua 插件.md │ │ └── 案例.md │ ├── caddy │ │ ├── README.md │ │ └── docker-compose-static.yml │ ├── envoy │ │ ├── Envoy Admin API.md │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── dynamic-config │ │ │ ├── cds.yaml │ │ │ ├── envoy.yaml │ │ │ └── lds.yaml │ │ ├── http │ │ │ └── REAME.md │ │ ├── static-config.yaml │ │ └── 扩展 Envoy.md │ ├── ipvs │ │ └── README.md │ ├── keepalived │ │ └── README.md │ ├── nginx │ │ ├── Nginx 学习笔记.md │ │ ├── Nginx 缓存配置.md │ │ ├── Openresty 学习笔记.md │ │ ├── PROXY 协议.md │ │ ├── README.md │ │ ├── Static File Server.md │ │ ├── nginx 常见案例.md │ │ ├── nginx 常见错误配置.md │ │ ├── nginx.conf.sample │ │ └── 性能优化.md │ ├── traefik │ │ ├── README.md │ │ ├── docker-mode │ │ │ ├── README.md │ │ │ └── docker-compose.yml │ │ └── file-mode │ │ │ ├── config │ │ │ ├── dynamic.yml │ │ │ └── traefik.yml │ │ │ └── docker-compose.yml │ ├── 常见问题.md │ ├── 负载均衡算法.md │ └── 高负载下网关层常见问题.md └── security │ ├── README.md │ ├── VPN 协议研究.md │ ├── wireguard-kubernetes │ ├── README.md │ ├── tester.yaml │ └── wireguard-daemonset.yaml │ ├── 统一的账号权限系统.md │ └── 认证授权与数字加密.md ├── neuroscience └── README.md ├── os ├── macos │ ├── IOS 自动化构建.md │ ├── README.md │ ├── permission-issues.md │ └── yabai 窗口管理器.md └── windows │ └── REAMD.md ├── other ├── Power Bank.md ├── android │ ├── android-tools.md │ └── app 签名.md ├── crawler │ └── README.md ├── mqtt │ ├── README.md │ └── emqx │ │ ├── README.md │ │ └── docker-compose.yml └── vpn │ ├── README.md │ └── docker-compose.yml ├── pl ├── README.md ├── c# │ └── C# AST 语法树.md ├── c │ ├── README.md │ ├── debug.md │ └── io.md ├── data-dsl │ └── 如何正确地使用静态语言处理结构未知的 Json xml html.md ├── elixir │ └── README.md ├── golang │ ├── 10. 测试与性能分析.md │ ├── 11. Go 语言的 AST 语法树.md │ ├── 2. 引用类型与值类型.md │ ├── 3. 字符串.md │ ├── 7. 并发编程.md │ ├── Go 最佳实践.md │ ├── Go 语言私有依赖的拉取.md │ ├── README.md │ ├── codes │ │ ├── learn_image.go │ │ ├── learn_io.go │ │ ├── learn_slice.go │ │ ├── learn_string.go │ │ └── prime_factors.go │ ├── containers.md │ └── install-golang-env.sh ├── java │ ├── IO.md │ ├── Java 中文编码分析.md │ ├── README.md │ ├── 线程的同步与异步.md │ └── 适合阅读的源码.md ├── julia │ ├── Julia 学习笔记(一):数组.md │ └── Julia 学习笔记(二)类型.md ├── python │ ├── README.md │ ├── concurrent │ │ ├── Python 并发编程:PoolExecutor 篇.md │ │ ├── Python 并发编程:进程线程篇.md │ │ └── Python 异步编程笔记:asyncio.md │ ├── dataclass pydantic 注意事项.md │ ├── date_and_time.py │ ├── flask │ │ └── README.md │ ├── other │ │ └── Scrapy 学习笔记(一)数据提取.md │ ├── python 的 AST 语法树.md │ ├── read_sni_from_pcap.py │ ├── utils │ │ ├── README.md │ │ ├── __init__.py │ │ ├── common.py │ │ ├── file.py │ │ ├── shell.py │ │ ├── ssh.py │ │ └── time.py │ └── 测试工具.md ├── regular-expression │ └── Java Python Elixir 正则库使用上的注意事项.md ├── rust │ └── README.md ├── sql │ └── README.md ├── theory │ ├── 《代码之髓》笔记.md │ ├── 编程的宗派.md │ ├── 编程的智慧.md │ └── 谈程序的通用性.md ├── wasm │ └── README.md └── 各语言通用的一些知识点.md ├── psychology ├── ADHD │ ├── README.md │ └── 正念冥想疗法.md ├── README.md ├── 科学心理学.md └── 阿勒德心理学.md ├── swimming ├── README.md ├── swimming-styles.md └── tutorial.md ├── telemetry ├── README.md ├── logging │ ├── README.md │ ├── efk │ │ ├── README.md │ │ └── fluentd-daemonset-elasticsearch-rbac.yaml │ └── loki │ │ └── README.md ├── metrics │ ├── README.md │ ├── dashboard - grafana │ │ ├── Grafana笔记.md │ │ └── 使用 jsonnet 编写 grafana 配置.md │ └── prometheus │ │ ├── PromQL.md │ │ ├── Prometheus 的部署.md │ │ ├── Prometheus 的配置.md │ │ └── dockprom │ │ ├── README.md │ │ ├── alertmanager │ │ └── config.yml │ │ ├── caddy │ │ └── Caddyfile │ │ ├── docker-compose.exporters.yml │ │ ├── docker-compose.yml │ │ ├── grafana │ │ └── provisioning │ │ │ ├── dashboards │ │ │ ├── dashboard.yml │ │ │ ├── docker_containers.json │ │ │ ├── docker_host.json │ │ │ ├── monitor_services.json │ │ │ └── nginx_container.json │ │ │ └── datasources │ │ │ └── datasource.yml │ │ └── prometheus │ │ ├── alert_rules.yml │ │ ├── prometheus.yml │ │ └── record_rules.yml └── tracing - jaeger │ └── README.md ├── testing ├── README.md ├── performance-testing │ ├── Locust 自动化压测.md │ ├── README.md │ ├── locust-master.yaml │ ├── locust-slaves.yaml │ ├── 如何模拟大量 tcp 连接.md │ └── 网关功能验证.md ├── 测试的道理.md └── 谈测试驱动开发.md └── trading └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/mirror_to_gitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/.github/workflows/mirror_to_gitee.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/.typos.toml -------------------------------------------------------------------------------- /3d graphics & modeling/3d-printing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/3d graphics & modeling/3d-printing/README.md -------------------------------------------------------------------------------- /3d graphics & modeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/3d graphics & modeling/README.md -------------------------------------------------------------------------------- /3d graphics & modeling/Unreal Engine 5/README.md: -------------------------------------------------------------------------------- 1 | # Unreal Engine 5 2 | 3 | TBD 4 | -------------------------------------------------------------------------------- /3d graphics & modeling/blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/3d graphics & modeling/blender/README.md -------------------------------------------------------------------------------- /3d graphics & modeling/taichi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/3d graphics & modeling/taichi/README.md -------------------------------------------------------------------------------- /3d graphics & modeling/创造性编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/3d graphics & modeling/创造性编程.md -------------------------------------------------------------------------------- /AI & Data-Science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/README.md -------------------------------------------------------------------------------- /AI & Data-Science/_img/AI ML DL DataMining.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/_img/AI ML DL DataMining.jpg -------------------------------------------------------------------------------- /AI & Data-Science/_img/numpy-cheat-sheet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/_img/numpy-cheat-sheet.webp -------------------------------------------------------------------------------- /AI & Data-Science/_img/pandas-cheat-sheet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/_img/pandas-cheat-sheet.webp -------------------------------------------------------------------------------- /AI & Data-Science/ai-infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/ai-infra/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/CPU - AI Accelerating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/CPU - AI Accelerating.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/Nvidia CUDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/Nvidia CUDA.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/emotional-tts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/emotional-tts/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/image-super-resolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/image-super-resolution/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/large-language-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/large-language-model/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/nerf-3d-models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/nerf-3d-models/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/neural networks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/neural networks.ipynb -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/speech-recognization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/speech-recognization/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/stable-diffusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/stable-diffusion/README.md -------------------------------------------------------------------------------- /AI & Data-Science/deep learning/vocal synthesizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/deep learning/vocal synthesizer/README.md -------------------------------------------------------------------------------- /AI & Data-Science/matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/matplotlib.ipynb -------------------------------------------------------------------------------- /AI & Data-Science/numpy-cheat-sheet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/numpy-cheat-sheet.ipynb -------------------------------------------------------------------------------- /AI & Data-Science/pandas-cheat-sheet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/AI & Data-Science/pandas-cheat-sheet.ipynb -------------------------------------------------------------------------------- /CI-CD/CICD 领域也没有银弹.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/CICD 领域也没有银弹.md -------------------------------------------------------------------------------- /CI-CD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/README.md -------------------------------------------------------------------------------- /CI-CD/drone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/drone/README.md -------------------------------------------------------------------------------- /CI-CD/drone/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/drone/docker-compose.yml -------------------------------------------------------------------------------- /CI-CD/gitlab-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/gitlab-ci/README.md -------------------------------------------------------------------------------- /CI-CD/jenkins/Bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/Bugs.md -------------------------------------------------------------------------------- /CI-CD/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/README.md -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkins-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkins-master/README.md -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkins-master/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkins-master/docker-compose.yml -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkins-slave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkins-slave/README.md -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkins-slave/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkins-slave/docker-compose.yml -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkinsfile-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkinsfile-templates/README.md -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkinsfile-templates/batch-job.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkinsfile-templates/batch-job.Jenkinsfile -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkinsfile-templates/parallel-jobs.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkinsfile-templates/parallel-jobs.Jenkinsfile -------------------------------------------------------------------------------- /CI-CD/jenkins/jenkinsfile-templates/sonarscanner.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/jenkins/jenkinsfile-templates/sonarscanner.Jenkinsfile -------------------------------------------------------------------------------- /CI-CD/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/README.md -------------------------------------------------------------------------------- /CI-CD/kubernetes/argo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/argo/README.md -------------------------------------------------------------------------------- /CI-CD/kubernetes/argo/examples/build-ci-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/argo/examples/build-ci-images.yaml -------------------------------------------------------------------------------- /CI-CD/kubernetes/argo/examples/build-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/argo/examples/build-package.yaml -------------------------------------------------------------------------------- /CI-CD/kubernetes/argo/examples/build_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/argo/examples/build_image.yml -------------------------------------------------------------------------------- /CI-CD/kubernetes/buildkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/buildkit.md -------------------------------------------------------------------------------- /CI-CD/kubernetes/tekton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/kubernetes/tekton/README.md -------------------------------------------------------------------------------- /CI-CD/machine learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/machine learning/README.md -------------------------------------------------------------------------------- /CI-CD/常见问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/CI-CD/常见问题.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | logseq.thiscute.world -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/Notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/README.md -------------------------------------------------------------------------------- /acoustics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/acoustics/README.md -------------------------------------------------------------------------------- /algorithm/B 树、B+树、红黑树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/algorithm/B 树、B+树、红黑树.md -------------------------------------------------------------------------------- /algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/algorithm/README.md -------------------------------------------------------------------------------- /algorithm/_img/distributed-unique-id-algorithms.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/algorithm/_img/distributed-unique-id-algorithms.webp -------------------------------------------------------------------------------- /algorithm/分布式短链算法.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithm/唯一 ID 生成算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/algorithm/唯一 ID 生成算法.md -------------------------------------------------------------------------------- /algorithm/基数树 RadixTree 前缀树 Trie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/algorithm/基数树 RadixTree 前缀树 Trie.md -------------------------------------------------------------------------------- /algorithm/算法分析-基础.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/algorithm/算法分析-基础.md -------------------------------------------------------------------------------- /astrophotography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/astrophotography/README.md -------------------------------------------------------------------------------- /astrophotography/gears.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/astrophotography/gears.md -------------------------------------------------------------------------------- /blockchain/Blockchain Wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/blockchain/Blockchain Wallet.md -------------------------------------------------------------------------------- /blockchain/Ethereum Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/blockchain/Ethereum Basics.md -------------------------------------------------------------------------------- /blockchain/Ethereum Virtual Machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/blockchain/Ethereum Virtual Machine.md -------------------------------------------------------------------------------- /blockchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/blockchain/README.md -------------------------------------------------------------------------------- /blockchain/分布式数据库的一致性问题与共识算法.md: -------------------------------------------------------------------------------- 1 | 本文已迁移至: 2 | -------------------------------------------------------------------------------- /blockchain/区块链与 Web3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/blockchain/区块链与 Web3.md -------------------------------------------------------------------------------- /blockchain/零知识证明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/blockchain/零知识证明.md -------------------------------------------------------------------------------- /china/README.md: -------------------------------------------------------------------------------- 1 | # 中国 2 | 3 | 各种关于中国的资料。 4 | -------------------------------------------------------------------------------- /china/叫魂:1768 年中国妖术大恐慌.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/china/叫魂:1768 年中国妖术大恐慌.md -------------------------------------------------------------------------------- /cloud-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/README.md -------------------------------------------------------------------------------- /cloud-provider/alicloud/CDN 缓存策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/alicloud/CDN 缓存策略.md -------------------------------------------------------------------------------- /cloud-provider/alicloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/alicloud/README.md -------------------------------------------------------------------------------- /cloud-provider/alicloud/对象存储服务.md: -------------------------------------------------------------------------------- 1 | # 对象存储服务 2 | -------------------------------------------------------------------------------- /cloud-provider/alicloud/阿里云云服务 - Bugs汇总.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/alicloud/阿里云云服务 - Bugs汇总.md -------------------------------------------------------------------------------- /cloud-provider/aws/AWS 流量成本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/AWS 流量成本.md -------------------------------------------------------------------------------- /cloud-provider/aws/Athena/ALB 请求日志分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/Athena/ALB 请求日志分析.md -------------------------------------------------------------------------------- /cloud-provider/aws/Athena/AWS 服务日志转换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/Athena/AWS 服务日志转换.md -------------------------------------------------------------------------------- /cloud-provider/aws/Athena/Athena 成本分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/Athena/Athena 成本分析.md -------------------------------------------------------------------------------- /cloud-provider/aws/Athena/Flow Log 数据分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/Athena/Flow Log 数据分析.md -------------------------------------------------------------------------------- /cloud-provider/aws/Athena/REAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/Athena/REAME.md -------------------------------------------------------------------------------- /cloud-provider/aws/CloudFront CDN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/CloudFront CDN.md -------------------------------------------------------------------------------- /cloud-provider/aws/CloudWatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/CloudWatch.md -------------------------------------------------------------------------------- /cloud-provider/aws/EC2/ASG 伸缩组.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EC2/ASG 伸缩组.md -------------------------------------------------------------------------------- /cloud-provider/aws/EC2/EBS 与 EBS 快照.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EC2/EBS 与 EBS 快照.md -------------------------------------------------------------------------------- /cloud-provider/aws/EC2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EC2/README.md -------------------------------------------------------------------------------- /cloud-provider/aws/EC2/Spot 实例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EC2/Spot 实例.md -------------------------------------------------------------------------------- /cloud-provider/aws/EC2/特殊的 EC2 类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EC2/特殊的 EC2 类型.md -------------------------------------------------------------------------------- /cloud-provider/aws/EC2/网络限制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EC2/网络限制.md -------------------------------------------------------------------------------- /cloud-provider/aws/EKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/EKS.md -------------------------------------------------------------------------------- /cloud-provider/aws/ELB 负载均衡.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/ELB 负载均衡.md -------------------------------------------------------------------------------- /cloud-provider/aws/IAM 权限控制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/IAM 权限控制.md -------------------------------------------------------------------------------- /cloud-provider/aws/Linux 发行版.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/Linux 发行版.md -------------------------------------------------------------------------------- /cloud-provider/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/README.md -------------------------------------------------------------------------------- /cloud-provider/aws/S3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/S3.md -------------------------------------------------------------------------------- /cloud-provider/aws/VPC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/VPC.md -------------------------------------------------------------------------------- /cloud-provider/aws/存储与数据库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/存储与数据库.md -------------------------------------------------------------------------------- /cloud-provider/aws/成本分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/成本分析.md -------------------------------------------------------------------------------- /cloud-provider/aws/监控.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/aws/监控.md -------------------------------------------------------------------------------- /cloud-provider/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/gcp/README.md -------------------------------------------------------------------------------- /cloud-provider/gcp/成本分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/gcp/成本分析.md -------------------------------------------------------------------------------- /cloud-provider/multicloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/README.md -------------------------------------------------------------------------------- /cloud-provider/multicloud/_img/MCNS_Features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/_img/MCNS_Features.png -------------------------------------------------------------------------------- /cloud-provider/multicloud/_img/gloo-mesh-multi-cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/_img/gloo-mesh-multi-cluster.svg -------------------------------------------------------------------------------- /cloud-provider/multicloud/_img/gloo-multi-cluster-api-gateway.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/_img/gloo-multi-cluster-api-gateway.webp -------------------------------------------------------------------------------- /cloud-provider/multicloud/_img/google-multi-cluster-gateway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/_img/google-multi-cluster-gateway.svg -------------------------------------------------------------------------------- /cloud-provider/multicloud/_img/multi-cloud-and-stacks-of-envs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/_img/multi-cloud-and-stacks-of-envs.webp -------------------------------------------------------------------------------- /cloud-provider/multicloud/多云网络与统一网关.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/多云网络与统一网关.md -------------------------------------------------------------------------------- /cloud-provider/multicloud/跨云应用管理平台.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/跨云应用管理平台.md -------------------------------------------------------------------------------- /cloud-provider/multicloud/跨区流量处理方案.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/multicloud/跨区流量处理方案.md -------------------------------------------------------------------------------- /cloud-provider/tencentcloud/CDN 动态打包服务.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/cloud-provider/tencentcloud/CDN 动态打包服务.md -------------------------------------------------------------------------------- /cloud-provider/tencentcloud/README.md: -------------------------------------------------------------------------------- 1 | # 腾讯云 2 | 3 | TO BE DONE 4 | -------------------------------------------------------------------------------- /computer-science/IO模型 - 同步与异步.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/computer-science/IO模型 - 同步与异步.md -------------------------------------------------------------------------------- /computer-science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/computer-science/README.md -------------------------------------------------------------------------------- /computer-science/csapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/computer-science/csapp/README.md -------------------------------------------------------------------------------- /computer-science/求余与取模的差别.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/computer-science/求余与取模的差别.md -------------------------------------------------------------------------------- /config-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/README.md -------------------------------------------------------------------------------- /config-management/apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/apollo/README.md -------------------------------------------------------------------------------- /config-management/apollo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/apollo/docker-compose.yml -------------------------------------------------------------------------------- /config-management/apollo/sql/apolloconfigdb-dev.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/apollo/sql/apolloconfigdb-dev.sql -------------------------------------------------------------------------------- /config-management/apollo/sql/apolloconfigdb-fat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/apollo/sql/apolloconfigdb-fat.sql -------------------------------------------------------------------------------- /config-management/apollo/sql/apolloconfigdb-uat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/apollo/sql/apolloconfigdb-uat.sql -------------------------------------------------------------------------------- /config-management/apollo/sql/apolloportaldb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/apollo/sql/apolloportaldb.sql -------------------------------------------------------------------------------- /config-management/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/vault/README.md -------------------------------------------------------------------------------- /config-management/vault/docker-vault/config.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/vault/docker-vault/config.hcl -------------------------------------------------------------------------------- /config-management/vault/docker-vault/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/config-management/vault/docker-vault/docker-compose.yml -------------------------------------------------------------------------------- /container/Dockerfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/Dockerfiles.md -------------------------------------------------------------------------------- /container/Podman 笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/Podman 笔记.md -------------------------------------------------------------------------------- /container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/README.md -------------------------------------------------------------------------------- /container/Skopeo 笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/Skopeo 笔记.md -------------------------------------------------------------------------------- /container/_imgs/Container-Standards-Work-Podman-vs_-CRICTL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/_imgs/Container-Standards-Work-Podman-vs_-CRICTL.png -------------------------------------------------------------------------------- /container/_imgs/docker-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/_imgs/docker-architecture.jpg -------------------------------------------------------------------------------- /container/containerd 笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/containerd 笔记.md -------------------------------------------------------------------------------- /container/docker/Docker 数据持久化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/docker/Docker 数据持久化.md -------------------------------------------------------------------------------- /container/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/docker/README.md -------------------------------------------------------------------------------- /container/nsenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/nsenter.md -------------------------------------------------------------------------------- /container/sync_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/sync_images.py -------------------------------------------------------------------------------- /container/systemd-nspawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/systemd-nspawn.md -------------------------------------------------------------------------------- /container/容器安全.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/容器安全.md -------------------------------------------------------------------------------- /container/容器镜像与加速.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/容器镜像与加速.md -------------------------------------------------------------------------------- /container/容器镜像相关问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/container/容器镜像相关问题.md -------------------------------------------------------------------------------- /datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/README.md -------------------------------------------------------------------------------- /datastore/SQLite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/SQLite.md -------------------------------------------------------------------------------- /datastore/artifactory/README.md: -------------------------------------------------------------------------------- 1 | # Artifactory - 制品库 2 | 3 | 制品库用以管理源代码编译后的构建产物,如 Docker 镜像、各类语言的依赖包、软件安装包等。 4 | -------------------------------------------------------------------------------- /datastore/artifactory/harbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/artifactory/harbor/README.md -------------------------------------------------------------------------------- /datastore/artifactory/nexus3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/artifactory/nexus3/README.md -------------------------------------------------------------------------------- /datastore/artifactory/nexus3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/artifactory/nexus3/docker-compose.yml -------------------------------------------------------------------------------- /datastore/clickhouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/best-practices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/best-practices/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/clustering/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/merge-tree-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/merge-tree-engine/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/monitoring/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/performance-tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/performance-tuning/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/quickstart/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/realtime-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/realtime-analytics/README.md -------------------------------------------------------------------------------- /datastore/clickhouse/schema-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/clickhouse/schema-design/README.md -------------------------------------------------------------------------------- /datastore/elasticsearch/ElasticSearch Cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/elasticsearch/ElasticSearch Cluster/README.md -------------------------------------------------------------------------------- /datastore/elasticsearch/Kibana 数据分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/elasticsearch/Kibana 数据分析.md -------------------------------------------------------------------------------- /datastore/elasticsearch/Logstash 数据管道.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/elasticsearch/Logstash 数据管道.md -------------------------------------------------------------------------------- /datastore/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/elasticsearch/README.md -------------------------------------------------------------------------------- /datastore/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/etcd/README.md -------------------------------------------------------------------------------- /datastore/etcd/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/etcd/docker-compose.yml -------------------------------------------------------------------------------- /datastore/etcd/etcd 的备份与恢复.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/etcd/etcd 的备份与恢复.md -------------------------------------------------------------------------------- /datastore/etcd/etcd_with_systemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/etcd/etcd_with_systemd.md -------------------------------------------------------------------------------- /datastore/message queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/message queue/README.md -------------------------------------------------------------------------------- /datastore/message queue/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/message queue/kafka/README.md -------------------------------------------------------------------------------- /datastore/message queue/pulsar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/message queue/pulsar/README.md -------------------------------------------------------------------------------- /datastore/mongo/replicaset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mongo/replicaset/README.md -------------------------------------------------------------------------------- /datastore/mongo/replicaset/docker-compose-replicaset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mongo/replicaset/docker-compose-replicaset.yml -------------------------------------------------------------------------------- /datastore/mongo/replicaset/docker-compose-single.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mongo/replicaset/docker-compose-single.yml -------------------------------------------------------------------------------- /datastore/mongo/sharding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mongo/sharding/README.md -------------------------------------------------------------------------------- /datastore/mysql/MySQL 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/MySQL 协议.md -------------------------------------------------------------------------------- /datastore/mysql/MySQL 架构与其中的锁.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/MySQL 架构与其中的锁.md -------------------------------------------------------------------------------- /datastore/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/README.md -------------------------------------------------------------------------------- /datastore/mysql/in-memory/create_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/in-memory/create_databases.sql -------------------------------------------------------------------------------- /datastore/mysql/in-memory/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/in-memory/docker-compose.yml -------------------------------------------------------------------------------- /datastore/mysql/mysql cluster - vitess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/mysql cluster - vitess/README.md -------------------------------------------------------------------------------- /datastore/mysql/normal/create-databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/normal/create-databases.sql -------------------------------------------------------------------------------- /datastore/mysql/normal/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/mysql/normal/docker-compose.yml -------------------------------------------------------------------------------- /datastore/postgresql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/CHANGELOG.md -------------------------------------------------------------------------------- /datastore/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/README.md -------------------------------------------------------------------------------- /datastore/postgresql/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/admin/README.md -------------------------------------------------------------------------------- /datastore/postgresql/backup-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/backup-recovery/README.md -------------------------------------------------------------------------------- /datastore/postgresql/basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/basics/README.md -------------------------------------------------------------------------------- /datastore/postgresql/best-practices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/best-practices/README.md -------------------------------------------------------------------------------- /datastore/postgresql/data-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/data-types/README.md -------------------------------------------------------------------------------- /datastore/postgresql/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/examples/README.md -------------------------------------------------------------------------------- /datastore/postgresql/extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/extensions/README.md -------------------------------------------------------------------------------- /datastore/postgresql/functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/functions/README.md -------------------------------------------------------------------------------- /datastore/postgresql/indexes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/indexes/README.md -------------------------------------------------------------------------------- /datastore/postgresql/mysql-comparison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/mysql-comparison/README.md -------------------------------------------------------------------------------- /datastore/postgresql/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/performance/README.md -------------------------------------------------------------------------------- /datastore/postgresql/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/plugins/README.md -------------------------------------------------------------------------------- /datastore/postgresql/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/security/README.md -------------------------------------------------------------------------------- /datastore/postgresql/table-partitioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/table-partitioning/README.md -------------------------------------------------------------------------------- /datastore/postgresql/troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/postgresql/troubleshooting/README.md -------------------------------------------------------------------------------- /datastore/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/redis/README.md -------------------------------------------------------------------------------- /datastore/redis/docker-compose-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/redis/docker-compose-cache.yml -------------------------------------------------------------------------------- /datastore/redis/docker-compose-store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/redis/docker-compose-store.yml -------------------------------------------------------------------------------- /datastore/关系数据库与非关系数据库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/关系数据库与非关系数据库.md -------------------------------------------------------------------------------- /datastore/数据序列化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/datastore/数据序列化.md -------------------------------------------------------------------------------- /devops/Everything as Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/devops/Everything as Code.md -------------------------------------------------------------------------------- /devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/devops/README.md -------------------------------------------------------------------------------- /devops/_imgs/Develop-Publish-Reliability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/devops/_imgs/Develop-Publish-Reliability.png -------------------------------------------------------------------------------- /devops/什么是 DevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/devops/什么是 DevOps.md -------------------------------------------------------------------------------- /drawing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/drawing/README.md -------------------------------------------------------------------------------- /dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/README.md -------------------------------------------------------------------------------- /dsp/digital singal processing/Fourier expansion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/digital singal processing/Fourier expansion.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/0. overview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/0. overview.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/1.1 信号.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/1.1 信号.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/1.2 系统.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/1.2 系统.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/2.0 连续系统的时域分析.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/2.0 连续系统的时域分析.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/2.2 冲激响应.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/2.2 冲激响应.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/2.3. 卷积积分.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/2.3. 卷积积分.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/2.3.1 卷积积分的性质.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/2.3.1 卷积积分的性质.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/3. 信号的频谱分析.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/3. 信号的频谱分析.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/3.5 周期信号的 FT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/3.5 周期信号的 FT.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/4. 频谱分析技术的应用.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/4. 频谱分析技术的应用.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/5. LT 与 ZT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/5. LT 与 ZT.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/6. 系统的变换域分析.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/6. 系统的变换域分析.ipynb -------------------------------------------------------------------------------- /dsp/signals and systems/LTI-system-features-h(t).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/LTI-system-features-h(t).png -------------------------------------------------------------------------------- /dsp/signals and systems/LTI-system-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/LTI-system-function.png -------------------------------------------------------------------------------- /dsp/signals and systems/block-diagram-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/block-diagram-1.png -------------------------------------------------------------------------------- /dsp/signals and systems/chapter-2-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/chapter-2-overview.png -------------------------------------------------------------------------------- /dsp/signals and systems/conv-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/conv-test.png -------------------------------------------------------------------------------- /dsp/signals and systems/convolution-LTI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/convolution-LTI.png -------------------------------------------------------------------------------- /dsp/signals and systems/convolution-features-prove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/convolution-features-prove.png -------------------------------------------------------------------------------- /dsp/signals and systems/convolution-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/convolution-features.png -------------------------------------------------------------------------------- /dsp/signals and systems/convolution-sum-methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/convolution-sum-methods.png -------------------------------------------------------------------------------- /dsp/signals and systems/deconvolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/deconvolution.png -------------------------------------------------------------------------------- /dsp/signals and systems/get-system-func-by-equations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/get-system-func-by-equations.png -------------------------------------------------------------------------------- /dsp/signals and systems/get-system-func-by-impulse-resp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/get-system-func-by-impulse-resp.png -------------------------------------------------------------------------------- /dsp/signals and systems/image-processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/image-processing.png -------------------------------------------------------------------------------- /dsp/signals and systems/multi-dimension_convolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/multi-dimension_convolution.png -------------------------------------------------------------------------------- /dsp/signals and systems/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/overview.png -------------------------------------------------------------------------------- /dsp/signals and systems/response-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/response-type.png -------------------------------------------------------------------------------- /dsp/signals and systems/system-steady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/system-steady.png -------------------------------------------------------------------------------- /dsp/signals and systems/tmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/tmp.gif -------------------------------------------------------------------------------- /dsp/signals and systems/时域与频域的性质对比.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/dsp/signals and systems/时域与频域的性质对比.png -------------------------------------------------------------------------------- /electrical-engineering/8051/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/8051/README.md -------------------------------------------------------------------------------- /electrical-engineering/Bootloader 之争.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/Bootloader 之争.md -------------------------------------------------------------------------------- /electrical-engineering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/README.md -------------------------------------------------------------------------------- /electrical-engineering/VSCode C C++ 开发环境搭建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/VSCode C C++ 开发环境搭建.md -------------------------------------------------------------------------------- /electrical-engineering/drone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/drone/README.md -------------------------------------------------------------------------------- /electrical-engineering/esp32/2_ws2812_led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/2_ws2812_led.md -------------------------------------------------------------------------------- /electrical-engineering/esp32/3_esp32cam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/3_esp32cam.md -------------------------------------------------------------------------------- /electrical-engineering/esp32/4_sd_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/4_sd_card.md -------------------------------------------------------------------------------- /electrical-engineering/esp32/5_hid_remote_keyboard_mouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/5_hid_remote_keyboard_mouse.md -------------------------------------------------------------------------------- /electrical-engineering/esp32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/README.md -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/ESP32-CAM-FTDI-programmer-5V-supply.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/ESP32-CAM-FTDI-programmer-5V-supply.webp -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/ESP32-CAM-pinout-new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/ESP32-CAM-pinout-new.webp -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/WS2812B-Addressable-RGB-LED-pinout-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/WS2812B-Addressable-RGB-LED-pinout-diagram.jpg -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/WS2812B-RGB-Led-Strip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/WS2812B-RGB-Led-Strip.jpg -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/WS2812_LED_result.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/WS2812_LED_result.webp -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/sd-card-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/sd-card-pinout.png -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/usb3.0-plug-pin-layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/usb3.0-plug-pin-layout.jpg -------------------------------------------------------------------------------- /electrical-engineering/esp32/_img/usb3.0-receptacle-pin-layout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/_img/usb3.0-receptacle-pin-layout.webp -------------------------------------------------------------------------------- /electrical-engineering/esp32/learn-esp-idf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/esp32/learn-esp-idf.md -------------------------------------------------------------------------------- /electrical-engineering/fpga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/README.md -------------------------------------------------------------------------------- /electrical-engineering/fpga/digital-circuit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/digital-circuit.md -------------------------------------------------------------------------------- /electrical-engineering/fpga/execercises/modules/256-to-4-multiplexer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/execercises/modules/256-to-4-multiplexer.v -------------------------------------------------------------------------------- /electrical-engineering/fpga/execercises/modules/adder_subtractor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/execercises/modules/adder_subtractor.v -------------------------------------------------------------------------------- /electrical-engineering/fpga/execercises/modules/carry_select_adder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/execercises/modules/carry_select_adder.v -------------------------------------------------------------------------------- /electrical-engineering/fpga/execercises/modules/full_adder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/execercises/modules/full_adder.v -------------------------------------------------------------------------------- /electrical-engineering/fpga/execercises/procedures/priority_encoders.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/execercises/procedures/priority_encoders.v -------------------------------------------------------------------------------- /electrical-engineering/fpga/tang-9k-fpga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/tang-9k-fpga.md -------------------------------------------------------------------------------- /electrical-engineering/fpga/verilog_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/fpga/verilog_note.md -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/HDMI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/interface-protocol/HDMI.md -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/PCIe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/interface-protocol/PCIe.md -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/README.md: -------------------------------------------------------------------------------- 1 | # 嵌入式常见接口与协议 2 | 3 | TBD 4 | -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/_img/PCI-SIG_Law_Graphic_FINAL.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/interface-protocol/_img/PCI-SIG_Law_Graphic_FINAL.webp -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/_img/luatos-esp32s3-dvp-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/interface-protocol/_img/luatos-esp32s3-dvp-port.png -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/存储器的种类、接口与协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/interface-protocol/存储器的种类、接口与协议.md -------------------------------------------------------------------------------- /electrical-engineering/interface-protocol/流媒体接口与协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/interface-protocol/流媒体接口与协议.md -------------------------------------------------------------------------------- /electrical-engineering/luatos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/luatos/README.md -------------------------------------------------------------------------------- /electrical-engineering/luatos/_img/air780e-air700e-autoboot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/luatos/_img/air780e-air700e-autoboot.jpg -------------------------------------------------------------------------------- /electrical-engineering/lubancat-zero-w/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/lubancat-zero-w/README.md -------------------------------------------------------------------------------- /electrical-engineering/raspberrypi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/raspberrypi/README.md -------------------------------------------------------------------------------- /electrical-engineering/raspberrypi/robot_arm_pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/raspberrypi/robot_arm_pi.py -------------------------------------------------------------------------------- /electrical-engineering/raspberrypi/robot_car_pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/raspberrypi/robot_car_pi.py -------------------------------------------------------------------------------- /electrical-engineering/risc-v/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/risc-v/README.md -------------------------------------------------------------------------------- /electrical-engineering/risc-v/milkv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/risc-v/milkv.md -------------------------------------------------------------------------------- /electrical-engineering/risc-v/qemu-riscv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/risc-v/qemu-riscv.md -------------------------------------------------------------------------------- /electrical-engineering/rk3588/Dockerfile.rknn_toolkit2_1.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/Dockerfile.rknn_toolkit2_1.4.0 -------------------------------------------------------------------------------- /electrical-engineering/rk3588/Orange Pi 5 镜像编译.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/Orange Pi 5 镜像编译.md -------------------------------------------------------------------------------- /electrical-engineering/rk3588/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/README.md -------------------------------------------------------------------------------- /electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/README.md -------------------------------------------------------------------------------- /electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/convert_and_run_locally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/convert_and_run_locally.py -------------------------------------------------------------------------------- /electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/yolo_video_rk3588_npu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/yolo_video_rk3588_npu.py -------------------------------------------------------------------------------- /electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/yolov5s.rknn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/rk3588/yolov5_rknn_toolkit2_demo/yolov5s.rknn -------------------------------------------------------------------------------- /electrical-engineering/sipeed/M0s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/sipeed/M0s.md -------------------------------------------------------------------------------- /electrical-engineering/sipeed/M1s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/sipeed/M1s.md -------------------------------------------------------------------------------- /electrical-engineering/sipeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/sipeed/README.md -------------------------------------------------------------------------------- /electrical-engineering/sipeed/longan-nano.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/sipeed/longan-nano.md -------------------------------------------------------------------------------- /electrical-engineering/sipeed/m3axpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/sipeed/m3axpi.md -------------------------------------------------------------------------------- /electrical-engineering/stm32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/stm32/README.md -------------------------------------------------------------------------------- /electrical-engineering/导热硅胶片与散热片.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/导热硅胶片与散热片.md -------------------------------------------------------------------------------- /electrical-engineering/嵌入式领域的一些现象.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/electrical-engineering/嵌入式领域的一些现象.md -------------------------------------------------------------------------------- /filesystem/Linux 文件系统介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/filesystem/Linux 文件系统介绍.md -------------------------------------------------------------------------------- /filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/filesystem/README.md -------------------------------------------------------------------------------- /filesystem/btrfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/filesystem/btrfs.md -------------------------------------------------------------------------------- /filesystem/在Linux上搭建ISCS网络存储.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/filesystem/在Linux上搭建ISCS网络存储.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/flake.nix -------------------------------------------------------------------------------- /frontend/HTML XML 转义字符 (Escaping Characters).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/frontend/HTML XML 转义字符 (Escaping Characters).md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/frontend/README.md -------------------------------------------------------------------------------- /gamedev/README.md: -------------------------------------------------------------------------------- 1 | # 游戏开发 2 | -------------------------------------------------------------------------------- /gamedev/bevy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/gamedev/bevy.md -------------------------------------------------------------------------------- /gamedev/ldtk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/gamedev/ldtk.md -------------------------------------------------------------------------------- /games/README.md: -------------------------------------------------------------------------------- 1 | # 游戏记录 2 | -------------------------------------------------------------------------------- /games/_img/quest-2-airlink-setup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/games/_img/quest-2-airlink-setup.webp -------------------------------------------------------------------------------- /games/beat-saber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/games/beat-saber.md -------------------------------------------------------------------------------- /games/slimevr-full-body-tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/games/slimevr-full-body-tracking.md -------------------------------------------------------------------------------- /games/vrchat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/games/vrchat.md -------------------------------------------------------------------------------- /git/Git 笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/Git 笔记.md -------------------------------------------------------------------------------- /git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/README.md -------------------------------------------------------------------------------- /git/gitall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitall.py -------------------------------------------------------------------------------- /git/gitea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitea/README.md -------------------------------------------------------------------------------- /git/gitea/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitea/docker-compose.yml -------------------------------------------------------------------------------- /git/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitlab/README.md -------------------------------------------------------------------------------- /git/gitlab/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitlab/docker-compose.yml -------------------------------------------------------------------------------- /git/gitlab/gitlab_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitlab/gitlab_helper.py -------------------------------------------------------------------------------- /git/gitlab/pre-receive.d/check_commit_message_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/git/gitlab/pre-receive.d/check_commit_message_style.py -------------------------------------------------------------------------------- /homelab/Homelab 功耗调节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/Homelab 功耗调节.md -------------------------------------------------------------------------------- /homelab/Linux 性能测试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/Linux 性能测试.md -------------------------------------------------------------------------------- /homelab/Network Attached Storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/Network Attached Storage.md -------------------------------------------------------------------------------- /homelab/Operating System Installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/Operating System Installer.md -------------------------------------------------------------------------------- /homelab/Proxmox PCI 直通.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/Proxmox PCI 直通.md -------------------------------------------------------------------------------- /homelab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/README.md -------------------------------------------------------------------------------- /homelab/_img/dashy-homepage-2022-11-29.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/dashy-homepage-2022-11-29.webp -------------------------------------------------------------------------------- /homelab/_img/intel-pl1-pl2-tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/intel-pl1-pl2-tau.png -------------------------------------------------------------------------------- /homelab/_img/my-homelab-2022-11-23.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/my-homelab-2022-11-23.webp -------------------------------------------------------------------------------- /homelab/_img/my-homelab-2023-02-09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/my-homelab-2023-02-09.webp -------------------------------------------------------------------------------- /homelab/_img/my-homelab-internal-2022-11-06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/my-homelab-internal-2022-11-06.webp -------------------------------------------------------------------------------- /homelab/_img/ryan-pve-console-2022-11-29.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/ryan-pve-console-2022-11-29.webp -------------------------------------------------------------------------------- /homelab/_img/ryan-pve-console-2023-05-30.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/_img/ryan-pve-console-2023-05-30.webp -------------------------------------------------------------------------------- /homelab/android phone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/android phone/README.md -------------------------------------------------------------------------------- /homelab/home-automation/ESPHome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/home-automation/ESPHome.md -------------------------------------------------------------------------------- /homelab/home-automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/home-automation/README.md -------------------------------------------------------------------------------- /homelab/home-automation/_img/ESP32-CAM-FTDI-programmer-5V-supply.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/home-automation/_img/ESP32-CAM-FTDI-programmer-5V-supply.webp -------------------------------------------------------------------------------- /homelab/home-automation/_img/ESP32-CAM-pinout-new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/home-automation/_img/ESP32-CAM-pinout-new.webp -------------------------------------------------------------------------------- /homelab/router&switcher/Linux 配置多网卡多IP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/router&switcher/Linux 配置多网卡多IP.md -------------------------------------------------------------------------------- /homelab/router&switcher/OpenWRT 系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/router&switcher/OpenWRT 系统.md -------------------------------------------------------------------------------- /homelab/router&switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/router&switcher/README.md -------------------------------------------------------------------------------- /homelab/router&switcher/有线路由 ER-X 配置笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/router&switcher/有线路由 ER-X 配置笔记.md -------------------------------------------------------------------------------- /homelab/数据备份与同步.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/homelab/数据备份与同步.md -------------------------------------------------------------------------------- /infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/README.md -------------------------------------------------------------------------------- /infrastructure/ansible/1. 免密登录与主机清单配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/ansible/1. 免密登录与主机清单配置.md -------------------------------------------------------------------------------- /infrastructure/ansible/2. Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/ansible/2. Module.md -------------------------------------------------------------------------------- /infrastructure/ansible/3. Playbook.md: -------------------------------------------------------------------------------- 1 | # Playbook(剧本) 2 | -------------------------------------------------------------------------------- /infrastructure/ansible/4. Roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/ansible/4. Roles.md -------------------------------------------------------------------------------- /infrastructure/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/ansible/README.md -------------------------------------------------------------------------------- /infrastructure/pulumi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/pulumi/README.md -------------------------------------------------------------------------------- /infrastructure/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/terraform/README.md -------------------------------------------------------------------------------- /infrastructure/terraform/backup-terraformer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/terraform/backup-terraformer.md -------------------------------------------------------------------------------- /infrastructure/terraform/tls-certs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/terraform/tls-certs.tf -------------------------------------------------------------------------------- /infrastructure/基础设施的管理与维护.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/infrastructure/基础设施的管理与维护.md -------------------------------------------------------------------------------- /kubernetes/K8s Job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/K8s Job.md -------------------------------------------------------------------------------- /kubernetes/Kubernetes CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/Kubernetes CHANGELOG.md -------------------------------------------------------------------------------- /kubernetes/Kubernetes Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/Kubernetes Events.md -------------------------------------------------------------------------------- /kubernetes/Kubernetes 常见错误、原因及处理方法.md: -------------------------------------------------------------------------------- 1 | 内容已迁移至博 2 | 客:[Kubernetes 常见错误、原因及处理方法](https://thiscute.world/posts/kubernetes-common-errors-and-solutions/) 3 | -------------------------------------------------------------------------------- /kubernetes/Kubernetes 最佳实践.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/Kubernetes 最佳实践.md -------------------------------------------------------------------------------- /kubernetes/Pod 中的容器启动顺序、终止顺序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/Pod 中的容器启动顺序、终止顺序.md -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/Statefulset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/Statefulset.md -------------------------------------------------------------------------------- /kubernetes/apiserver extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/apiserver extension/README.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - cluster/README.md: -------------------------------------------------------------------------------- 1 | # 节点自动伸缩 2 | 3 | ... 4 | -------------------------------------------------------------------------------- /kubernetes/autoscaling - cluster/aws-autoscaler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - cluster/aws-autoscaler.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - cluster/aws-karpenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - cluster/aws-karpenter.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - cluster/aws-node-termination-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - cluster/aws-node-termination-handler.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - cluster/node-problem-detector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - cluster/node-problem-detector.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - pod/Horizontal Pod Autoscaler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - pod/Horizontal Pod Autoscaler.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - pod/KEDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - pod/KEDA.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - pod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - pod/README.md -------------------------------------------------------------------------------- /kubernetes/autoscaling - pod/prometheus-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/autoscaling - pod/prometheus-adapter.md -------------------------------------------------------------------------------- /kubernetes/cloud os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/cloud os.md -------------------------------------------------------------------------------- /kubernetes/cloud-ide/eclipse-che.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/cloud-ide/eclipse-che.md -------------------------------------------------------------------------------- /kubernetes/code_analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/code_analysis/README.md -------------------------------------------------------------------------------- /kubernetes/code_analysis/kube_proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/code_analysis/kube_proxy.md -------------------------------------------------------------------------------- /kubernetes/configuration-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/configuration-management/README.md -------------------------------------------------------------------------------- /kubernetes/configuration-management/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/configuration-management/helm/README.md -------------------------------------------------------------------------------- /kubernetes/configuration-management/kustomize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/configuration-management/kustomize/README.md -------------------------------------------------------------------------------- /kubernetes/continous-delivery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/continous-delivery/README.md -------------------------------------------------------------------------------- /kubernetes/continous-delivery/argo-rollouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/continous-delivery/argo-rollouts/README.md -------------------------------------------------------------------------------- /kubernetes/continous-delivery/flagger/ custom-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/continous-delivery/flagger/ custom-values.yaml -------------------------------------------------------------------------------- /kubernetes/continous-delivery/flagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/continous-delivery/flagger/README.md -------------------------------------------------------------------------------- /kubernetes/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/dashboard/README.md -------------------------------------------------------------------------------- /kubernetes/finops/Kubernetes 集群的成本分析与优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/finops/Kubernetes 集群的成本分析与优化.md -------------------------------------------------------------------------------- /kubernetes/finops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/finops/README.md -------------------------------------------------------------------------------- /kubernetes/gitops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/gitops/README.md -------------------------------------------------------------------------------- /kubernetes/gitops/argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/gitops/argocd/README.md -------------------------------------------------------------------------------- /kubernetes/gitops/fluxcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/gitops/fluxcd/README.md -------------------------------------------------------------------------------- /kubernetes/ingress-egress/Kong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/ingress-egress/Kong.md -------------------------------------------------------------------------------- /kubernetes/ingress-egress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/ingress-egress/README.md -------------------------------------------------------------------------------- /kubernetes/ingress-egress/_img/api-gateway-plus-istio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/ingress-egress/_img/api-gateway-plus-istio.png -------------------------------------------------------------------------------- /kubernetes/ingress-egress/gateway-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/ingress-egress/gateway-api.md -------------------------------------------------------------------------------- /kubernetes/ingress-egress/traefik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/ingress-egress/traefik.md -------------------------------------------------------------------------------- /kubernetes/kubectl 常用命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/kubectl 常用命令.md -------------------------------------------------------------------------------- /kubernetes/kubectl-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/kubectl-debug.md -------------------------------------------------------------------------------- /kubernetes/kubernetes 控制面故障现象及分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/kubernetes 控制面故障现象及分析.md -------------------------------------------------------------------------------- /kubernetes/kubevirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/kubevirt/README.md -------------------------------------------------------------------------------- /kubernetes/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/metrics/README.md -------------------------------------------------------------------------------- /kubernetes/metrics/events-expoter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/metrics/events-expoter.md -------------------------------------------------------------------------------- /kubernetes/metrics/kube-stat-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/metrics/kube-stat-metrics.md -------------------------------------------------------------------------------- /kubernetes/metrics/metrics-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/metrics/metrics-server.md -------------------------------------------------------------------------------- /kubernetes/metrics/pixie - kubernetes-observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/metrics/pixie - kubernetes-observability.md -------------------------------------------------------------------------------- /kubernetes/multicluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/multicluster/README.md -------------------------------------------------------------------------------- /kubernetes/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/README.md -------------------------------------------------------------------------------- /kubernetes/network/Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/Service.md -------------------------------------------------------------------------------- /kubernetes/network/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/cilium/README.md -------------------------------------------------------------------------------- /kubernetes/network/kubernetes 中的负载均衡.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/kubernetes 中的负载均衡.md -------------------------------------------------------------------------------- /kubernetes/network/为外部服务创建 K8s Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/为外部服务创建 K8s Service.md -------------------------------------------------------------------------------- /kubernetes/network/使用 Kubernetes 部署边缘网关.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/使用 Kubernetes 部署边缘网关.md -------------------------------------------------------------------------------- /kubernetes/network/基于拓扑的路由或转发策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/基于拓扑的路由或转发策略.md -------------------------------------------------------------------------------- /kubernetes/network/将服务暴露到外部.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/network/将服务暴露到外部.md -------------------------------------------------------------------------------- /kubernetes/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/platform/README.md -------------------------------------------------------------------------------- /kubernetes/platform/dapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/platform/dapr/README.md -------------------------------------------------------------------------------- /kubernetes/platform/knative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/platform/knative/README.md -------------------------------------------------------------------------------- /kubernetes/programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/programming/README.md -------------------------------------------------------------------------------- /kubernetes/scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/scheduler/README.md -------------------------------------------------------------------------------- /kubernetes/security/Open Policy Agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/security/Open Policy Agent.md -------------------------------------------------------------------------------- /kubernetes/security/RBAC.md: -------------------------------------------------------------------------------- 1 | # Kubernetes RBAC 2 | -------------------------------------------------------------------------------- /kubernetes/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/security/README.md -------------------------------------------------------------------------------- /kubernetes/security/aws-iam-and-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/security/aws-iam-and-kubernetes.md -------------------------------------------------------------------------------- /kubernetes/security/cert-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/security/cert-manager.md -------------------------------------------------------------------------------- /kubernetes/security/kyverno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/security/kyverno.md -------------------------------------------------------------------------------- /kubernetes/security/oidc-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/security/oidc-provider.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/README.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/CHANGELOG.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Egress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Egress.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Envoy Sidecar 细节分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Envoy Sidecar 细节分析.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Ingress.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Istio 数据面 - Envoy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Istio 数据面 - Envoy.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Istio 的 DNS 智能代理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Istio 的 DNS 智能代理.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Istio 监控告警.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Istio 监控告警.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Istio 自定义资源介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Istio 自定义资源介绍.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/Istio 超时重试与请求幂等性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/Istio 超时重试与请求幂等性.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/README.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/ambient-mode/README.md: -------------------------------------------------------------------------------- 1 | # Istio Ambient Mode 2 | 3 | 目前测试进展: 4 | 5 | 1. 6 | -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/common-ingressgateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/common-ingressgateway.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/envoyfilters/direct_response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/envoyfilters/direct_response.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/envoyfilters/enable-accesslog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/envoyfilters/enable-accesslog.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/envoyfilters/gzip-stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/envoyfilters/gzip-stats.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/envoyfilters/path-classification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/envoyfilters/path-classification.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/envoyfilters/remove-envoy-response-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/envoyfilters/remove-envoy-response-headers.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/envoyfilters/rewrite-host-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/envoyfilters/rewrite-host-header.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/istio-operator-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/istio-operator-values.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/kiali 流量观测.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/kiali 流量观测.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/kiali-operator-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/kiali-operator-values.yaml -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/如何将服务从 HTTP 迁移到 gRPC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/如何将服务从 HTTP 迁移到 gRPC.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/最佳实践.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/最佳实践.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/服务治理的执行位置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/服务治理的执行位置.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/流量管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/流量管理.md -------------------------------------------------------------------------------- /kubernetes/service_mesh/istio/跨集群的服务网格.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/service_mesh/istio/跨集群的服务网格.md -------------------------------------------------------------------------------- /kubernetes/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/storage/README.md -------------------------------------------------------------------------------- /kubernetes/storage/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/storage/minio/README.md -------------------------------------------------------------------------------- /kubernetes/storage/rook-ceph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/storage/rook-ceph/README.md -------------------------------------------------------------------------------- /kubernetes/如何升级一个 Kubernetes 集群.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/如何升级一个 Kubernetes 集群.md -------------------------------------------------------------------------------- /kubernetes/理解 Kubernetes 的基本调度单位-Pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/理解 Kubernetes 的基本调度单位-Pod.md -------------------------------------------------------------------------------- /kubernetes/节点数量vs节点规格.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/节点数量vs节点规格.md -------------------------------------------------------------------------------- /kubernetes/部署一个 Kubernetes 集群.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/kubernetes/部署一个 Kubernetes 集群.md -------------------------------------------------------------------------------- /linux/Linux IO 性能问题与解决思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux IO 性能问题与解决思路.md -------------------------------------------------------------------------------- /linux/Linux 中如何同时运行多个进程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 中如何同时运行多个进程.md -------------------------------------------------------------------------------- /linux/Linux 主机安全设置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 主机安全设置.md -------------------------------------------------------------------------------- /linux/Linux 内存泄漏问题排查.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 内存泄漏问题排查.md -------------------------------------------------------------------------------- /linux/Linux 各发行版常用配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 各发行版常用配置.md -------------------------------------------------------------------------------- /linux/Linux 应用安全.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 应用安全.md -------------------------------------------------------------------------------- /linux/Linux 性能监控与故障排查:主要性能指标说明及监控方法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 性能监控与故障排查:主要性能指标说明及监控方法.md -------------------------------------------------------------------------------- /linux/Linux 的开机流程、module 管理与 Loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 的开机流程、module 管理与 Loader.md -------------------------------------------------------------------------------- /linux/Linux 进程管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 进程管理.md -------------------------------------------------------------------------------- /linux/Linux 集群的漏洞检测与修复方案.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux 集群的漏洞检测与修复方案.md -------------------------------------------------------------------------------- /linux/Linux-Kernel-Releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux-Kernel-Releases.md -------------------------------------------------------------------------------- /linux/Linux系统编程/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/Linux系统编程/README.md -------------------------------------------------------------------------------- /linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/README.md -------------------------------------------------------------------------------- /linux/_img/i3wm-keyboard-layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/_img/i3wm-keyboard-layer1.png -------------------------------------------------------------------------------- /linux/_img/i3wm-keyboard-layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/_img/i3wm-keyboard-layer2.png -------------------------------------------------------------------------------- /linux/_img/intel-pl1-pl2-tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/_img/intel-pl1-pl2-tau.png -------------------------------------------------------------------------------- /linux/_img/node-exporter-high-io-wait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/_img/node-exporter-high-io-wait.webp -------------------------------------------------------------------------------- /linux/cli-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/cli-tools.md -------------------------------------------------------------------------------- /linux/debian-on-luks2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/debian-on-luks2.md -------------------------------------------------------------------------------- /linux/desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/desktop/README.md -------------------------------------------------------------------------------- /linux/desktop/bluetoothctl 的使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/desktop/bluetoothctl 的使用.md -------------------------------------------------------------------------------- /linux/desktop/endeavour-i3wm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/desktop/endeavour-i3wm.md -------------------------------------------------------------------------------- /linux/desktop/endeavour-sway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/desktop/endeavour-sway.md -------------------------------------------------------------------------------- /linux/disk/Linux LVM 逻辑卷管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/disk/Linux LVM 逻辑卷管理.md -------------------------------------------------------------------------------- /linux/disk/Linux 分区与文件系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/disk/Linux 分区与文件系统.md -------------------------------------------------------------------------------- /linux/disk/Linux 磁盘占用的排查流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/disk/Linux 磁盘占用的排查流程.md -------------------------------------------------------------------------------- /linux/disk/fstab 与自动挂载.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/disk/fstab 与自动挂载.md -------------------------------------------------------------------------------- /linux/disk/使用 dd 命令备份与恢复硬盘.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/disk/使用 dd 命令备份与恢复硬盘.md -------------------------------------------------------------------------------- /linux/ebpf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/ebpf/README.md -------------------------------------------------------------------------------- /linux/ebpf/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/ebpf/flake.lock -------------------------------------------------------------------------------- /linux/ebpf/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/ebpf/flake.nix -------------------------------------------------------------------------------- /linux/guix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/guix/README.md -------------------------------------------------------------------------------- /linux/linux-syscall-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/linux-syscall-monitoring.md -------------------------------------------------------------------------------- /linux/network/nftables.md: -------------------------------------------------------------------------------- 1 | # NFtables 2 | -------------------------------------------------------------------------------- /linux/network/tproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/network/tproxy.md -------------------------------------------------------------------------------- /linux/nixos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/nixos/README.md -------------------------------------------------------------------------------- /linux/nixos/nix-darwin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/nixos/nix-darwin.md -------------------------------------------------------------------------------- /linux/nixos/nixpkgs-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/nixos/nixpkgs-workflow.md -------------------------------------------------------------------------------- /linux/nushell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/nushell.md -------------------------------------------------------------------------------- /linux/tools/GNU coreutils 源码阅读笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/tools/GNU coreutils 源码阅读笔记.md -------------------------------------------------------------------------------- /linux/tools/命令行查看图片视频.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/tools/命令行查看图片视频.md -------------------------------------------------------------------------------- /linux/zswap-vs-zram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/zswap-vs-zram.md -------------------------------------------------------------------------------- /linux/常见问题排查指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/常见问题排查指南.md -------------------------------------------------------------------------------- /linux/性能优化/Linux 504 超时丢包问题解决思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/性能优化/Linux 504 超时丢包问题解决思路.md -------------------------------------------------------------------------------- /linux/性能优化/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/性能优化/README.md -------------------------------------------------------------------------------- /linux/性能优化/动态追踪技术.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/性能优化/动态追踪技术.md -------------------------------------------------------------------------------- /linux/性能优化/参数调优.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/性能优化/参数调优.md -------------------------------------------------------------------------------- /linux/性能问题排查路径.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/性能问题排查路径.md -------------------------------------------------------------------------------- /linux/深入学习 Systemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/深入学习 Systemd.md -------------------------------------------------------------------------------- /linux/系统服务 daemon - systemd/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/系统服务 daemon - systemd/使用 supervisord 设置应用开机启动.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/系统服务 daemon - systemd/使用 supervisord 设置应用开机启动.md -------------------------------------------------------------------------------- /linux/系统服务 daemon - systemd/通过 systemd 设置自定义 Service.md: -------------------------------------------------------------------------------- 1 | 已迁移至 2 | -------------------------------------------------------------------------------- /linux/远程桌面.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/linux/远程桌面.md -------------------------------------------------------------------------------- /math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/README.md -------------------------------------------------------------------------------- /math/linear algebra/0. 什么是线性代数.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/0. 什么是线性代数.ipynb -------------------------------------------------------------------------------- /math/linear algebra/1. 矩阵乘法.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/1. 矩阵乘法.ipynb -------------------------------------------------------------------------------- /math/linear algebra/2. 线性方程组.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/2. 线性方程组.ipynb -------------------------------------------------------------------------------- /math/linear algebra/3. 矩阵的逆与LU分解.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/3. 矩阵的逆与LU分解.ipynb -------------------------------------------------------------------------------- /math/linear algebra/4. 置换矩阵、转置矩阵、对称矩阵.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/4. 置换矩阵、转置矩阵、对称矩阵.ipynb -------------------------------------------------------------------------------- /math/linear algebra/5. 向量空间.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/5. 向量空间.ipynb -------------------------------------------------------------------------------- /math/linear algebra/6. 秩、基、范数.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/6. 秩、基、范数.ipynb -------------------------------------------------------------------------------- /math/linear algebra/Matrix_transpose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/math/linear algebra/Matrix_transpose.gif -------------------------------------------------------------------------------- /multimedia/ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/multimedia/ffmpeg.md -------------------------------------------------------------------------------- /music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/README.md -------------------------------------------------------------------------------- /music/instruments synthesizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments synthesizer/README.md -------------------------------------------------------------------------------- /music/instruments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/README.md -------------------------------------------------------------------------------- /music/instruments/口琴/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/口琴/README.md -------------------------------------------------------------------------------- /music/instruments/口琴/复音口琴-基础练习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/口琴/复音口琴-基础练习.md -------------------------------------------------------------------------------- /music/instruments/笛箫/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/笛箫/README.md -------------------------------------------------------------------------------- /music/instruments/笛箫/image/竹笛指法表.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/笛箫/image/竹笛指法表.png -------------------------------------------------------------------------------- /music/instruments/笛箫/image/竹笛转调表.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/笛箫/image/竹笛转调表.jpg -------------------------------------------------------------------------------- /music/instruments/笛箫/竹笛的音域与转调.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/笛箫/竹笛的音域与转调.md -------------------------------------------------------------------------------- /music/instruments/笛箫/该选择何种调号的竹笛及指法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/instruments/笛箫/该选择何种调号的竹笛及指法.md -------------------------------------------------------------------------------- /music/scores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/README.md -------------------------------------------------------------------------------- /music/scores/你怎么说-简谱.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/你怎么说-简谱.gif -------------------------------------------------------------------------------- /music/scores/你把相思赋予谁-简谱.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/你把相思赋予谁-简谱.gif -------------------------------------------------------------------------------- /music/scores/八辈子-piano.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/八辈子-piano.mid -------------------------------------------------------------------------------- /music/scores/好一朵茉莉花-笛箫-简谱.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/好一朵茉莉花-笛箫-简谱.jpg -------------------------------------------------------------------------------- /music/scores/梁祝-竹笛-简谱.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/梁祝-竹笛-简谱.png -------------------------------------------------------------------------------- /music/scores/梦里水乡-竹笛-简谱.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/梦里水乡-竹笛-简谱.png -------------------------------------------------------------------------------- /music/scores/步步高-二胡-简谱.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/步步高-二胡-简谱.jpg -------------------------------------------------------------------------------- /music/scores/爱尔兰画眉-口琴-简谱&五线谱.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/爱尔兰画眉-口琴-简谱&五线谱.jpg -------------------------------------------------------------------------------- /music/scores/送你一朵山茶花-简谱.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/送你一朵山茶花-简谱.gif -------------------------------------------------------------------------------- /music/scores/送别-笛箫-简谱.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/送别-笛箫-简谱.jpg -------------------------------------------------------------------------------- /music/scores/醉梦-简谱.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/醉梦-简谱.jpg -------------------------------------------------------------------------------- /music/scores/飞雪玉花-简谱.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/scores/飞雪玉花-简谱.png -------------------------------------------------------------------------------- /music/sonic-pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/sonic-pi/README.md -------------------------------------------------------------------------------- /music/sonic-pi/life.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/sonic-pi/life.rb -------------------------------------------------------------------------------- /music/theory/image/2-大和弦的符号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/2-大和弦的符号.png -------------------------------------------------------------------------------- /music/theory/image/25230031-c61ee624ca7b46569db31f52437438c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/25230031-c61ee624ca7b46569db31f52437438c5.png -------------------------------------------------------------------------------- /music/theory/image/3-小和弦的符号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/3-小和弦的符号.png -------------------------------------------------------------------------------- /music/theory/image/4-属和弦的符号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/4-属和弦的符号.png -------------------------------------------------------------------------------- /music/theory/image/5-和弦的转位.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/5-和弦的转位.png -------------------------------------------------------------------------------- /music/theory/image/6-add和弦.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/6-add和弦.png -------------------------------------------------------------------------------- /music/theory/image/7-sus和弦.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/7-sus和弦.png -------------------------------------------------------------------------------- /music/theory/image/8-omit和弦.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/8-omit和弦.png -------------------------------------------------------------------------------- /music/theory/image/9-括号的意义.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/9-括号的意义.png -------------------------------------------------------------------------------- /music/theory/image/Figured_Bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/Figured_Bass.png -------------------------------------------------------------------------------- /music/theory/image/IMG_20170706_010452.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/IMG_20170706_010452.jpg -------------------------------------------------------------------------------- /music/theory/image/IMG_20170712_160929.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/IMG_20170712_160929.jpg -------------------------------------------------------------------------------- /music/theory/image/Screen-Shot-2015-07-20-at-5-59-54-PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/Screen-Shot-2015-07-20-at-5-59-54-PM.png -------------------------------------------------------------------------------- /music/theory/image/七个基本和弦的功能.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/七个基本和弦的功能.png -------------------------------------------------------------------------------- /music/theory/image/七个调名.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/七个调名.png -------------------------------------------------------------------------------- /music/theory/image/三个最重要的和弦的功能.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/三个最重要的和弦的功能.png -------------------------------------------------------------------------------- /music/theory/image/五度相生律.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/五度相生律.png -------------------------------------------------------------------------------- /music/theory/image/其他和弦的符号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/其他和弦的符号.png -------------------------------------------------------------------------------- /music/theory/image/副属和弦.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/副属和弦.png -------------------------------------------------------------------------------- /music/theory/image/和弦符号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/和弦符号.png -------------------------------------------------------------------------------- /music/theory/image/和弦走向图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/和弦走向图.png -------------------------------------------------------------------------------- /music/theory/image/大调音阶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/大调音阶.png -------------------------------------------------------------------------------- /music/theory/image/小十一和弦.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/小十一和弦.png -------------------------------------------------------------------------------- /music/theory/image/屏幕截图(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/屏幕截图(2).png -------------------------------------------------------------------------------- /music/theory/image/自然小调.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/自然小调.png -------------------------------------------------------------------------------- /music/theory/image/调号原理-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/调号原理-2.png -------------------------------------------------------------------------------- /music/theory/image/调号原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/调号原理.png -------------------------------------------------------------------------------- /music/theory/image/调式中的音级.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/调式中的音级.png -------------------------------------------------------------------------------- /music/theory/image/调式总结.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/调式总结.png -------------------------------------------------------------------------------- /music/theory/image/调式来源.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/调式来源.png -------------------------------------------------------------------------------- /music/theory/image/音程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/音程.png -------------------------------------------------------------------------------- /music/theory/image/音程_(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/image/音程_(2).png -------------------------------------------------------------------------------- /music/theory/中国调式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/中国调式.md -------------------------------------------------------------------------------- /music/theory/乐理基础.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/乐理基础.md -------------------------------------------------------------------------------- /music/theory/五线谱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/五线谱.md -------------------------------------------------------------------------------- /music/theory/五线谱调号的判别与书写原理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/五线谱调号的判别与书写原理.md -------------------------------------------------------------------------------- /music/theory/和弦的功能(以C大调为例).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/和弦的功能(以C大调为例).md -------------------------------------------------------------------------------- /music/theory/和弦的口味.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/和弦的口味.md -------------------------------------------------------------------------------- /music/theory/和弦的符号.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/和弦的符号.md -------------------------------------------------------------------------------- /music/theory/和弦进阶.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/和弦进阶.md -------------------------------------------------------------------------------- /music/theory/和弦配置新招法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/和弦配置新招法.md -------------------------------------------------------------------------------- /music/theory/唱名法之争 - 首调与固定调.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/唱名法之争 - 首调与固定调.md -------------------------------------------------------------------------------- /music/theory/扒谱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/扒谱.md -------------------------------------------------------------------------------- /music/theory/给歌曲配和弦.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/给歌曲配和弦.md -------------------------------------------------------------------------------- /music/theory/调式详解.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/调式详解.md -------------------------------------------------------------------------------- /music/theory/音的强弱变化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/theory/音的强弱变化.md -------------------------------------------------------------------------------- /music/vocal synthesizer/ACE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/vocal synthesizer/ACE.md -------------------------------------------------------------------------------- /music/vocal synthesizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/music/vocal synthesizer/README.md -------------------------------------------------------------------------------- /natural-language/english/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/natural-language/english/README.md -------------------------------------------------------------------------------- /natural-language/english/_img/english-vocab-by-age-and-reading-habit.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/natural-language/english/_img/english-vocab-by-age-and-reading-habit.jpg.webp -------------------------------------------------------------------------------- /natural-language/english/_img/vocabulary-growth-per-day-by-reading-habits.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/natural-language/english/_img/vocabulary-growth-per-day-by-reading-habits.jpg.webp -------------------------------------------------------------------------------- /natural-language/english/_img/vocabulary-size-by-age.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/natural-language/english/_img/vocabulary-size-by-age.jpg.webp -------------------------------------------------------------------------------- /natural-language/english/为什么一定要撸英文小说.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/natural-language/english/为什么一定要撸英文小说.md -------------------------------------------------------------------------------- /natural-language/english/练习英语口语的办法-恶魔奶爸.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/natural-language/english/练习英语口语的办法-恶魔奶爸.md -------------------------------------------------------------------------------- /network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/README.md -------------------------------------------------------------------------------- /network/esim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/esim/README.md -------------------------------------------------------------------------------- /network/network-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/network-tools/README.md -------------------------------------------------------------------------------- /network/network-tools/使用WireShark嗅探并解密TLS数据.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/network-tools/使用WireShark嗅探并解密TLS数据.md -------------------------------------------------------------------------------- /network/other/DHCP 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/other/DHCP 协议.md -------------------------------------------------------------------------------- /network/other/_imgs/dhcp_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/other/_imgs/dhcp_flow.png -------------------------------------------------------------------------------- /network/other/使用 IPVS 进行负载均衡.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/other/使用 IPVS 进行负载均衡.md -------------------------------------------------------------------------------- /network/other/查询主机公网 IP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/other/查询主机公网 IP.md -------------------------------------------------------------------------------- /network/other/网络代理与科学上网.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/other/网络代理与科学上网.md -------------------------------------------------------------------------------- /network/other/高性能网络处理技术.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/other/高性能网络处理技术.md -------------------------------------------------------------------------------- /network/protocols/IP TCP UDP 的首部字段对比.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/IP TCP UDP 的首部字段对比.md -------------------------------------------------------------------------------- /network/protocols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/README.md -------------------------------------------------------------------------------- /network/protocols/_img/socket-state-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/_img/socket-state-machine.png -------------------------------------------------------------------------------- /network/protocols/_img/tcp-packet-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/_img/tcp-packet-head.png -------------------------------------------------------------------------------- /network/protocols/第一层:物理层.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第一层:物理层.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/HTTP Method 及 MIME 类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/HTTP Method 及 MIME 类型.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/HTTP1协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/HTTP1协议.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/HTTP2 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/HTTP2 协议.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/HTTP3 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/HTTP3 协议.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/gRPC 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/gRPC 协议.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/ssh 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/ssh 协议.md -------------------------------------------------------------------------------- /network/protocols/第七层-应用层/路由器的 ALG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第七层-应用层/路由器的 ALG.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/Anycast IP Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/Anycast IP Address.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/BGP 动态路由协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/BGP 动态路由协议.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/BGP 协议.md: -------------------------------------------------------------------------------- 1 | # BGP 协议 2 | 3 | 待续 4 | 5 | ## 参考 6 | 7 | - [BGP 漫谈](https://zhuanlan.zhihu.com/p/25433049) 8 | -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/IP 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/IP 协议.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/IPv6/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/IPv6/FAQ.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/IPv6/IPoE & IPv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/IPv6/IPoE & IPv6.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/IPv6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/IPv6/README.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/NAT 网关.md: -------------------------------------------------------------------------------- 1 | # NAT 网关 2 | 3 | > 内容已迁移至 4 | -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/OSPF 路由协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/OSPF 路由协议.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/README.md -------------------------------------------------------------------------------- /network/protocols/第三层-网络层/VRRP 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第三层-网络层/VRRP 协议.md -------------------------------------------------------------------------------- /network/protocols/第二层:数据链路层.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第二层:数据链路层.md -------------------------------------------------------------------------------- /network/protocols/第四层-传输层/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第四层-传输层/README.md -------------------------------------------------------------------------------- /network/protocols/第四层-传输层/Socket 状态变迁图及命令行查看方法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第四层-传输层/Socket 状态变迁图及命令行查看方法.md -------------------------------------------------------------------------------- /network/protocols/第四层-传输层/TCP 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/protocols/第四层-传输层/TCP 协议.md -------------------------------------------------------------------------------- /network/proxy&server/HTTP Headers 的转发策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/HTTP Headers 的转发策略.md -------------------------------------------------------------------------------- /network/proxy&server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/README.md -------------------------------------------------------------------------------- /network/proxy&server/_imgs/forward-proxy-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/_imgs/forward-proxy-flow.svg -------------------------------------------------------------------------------- /network/proxy&server/_imgs/reverse-proxy-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/_imgs/reverse-proxy-flow.svg -------------------------------------------------------------------------------- /network/proxy&server/apisix/APISIX API 介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/apisix/APISIX API 介绍.md -------------------------------------------------------------------------------- /network/proxy&server/apisix/ETCD 高可用问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/apisix/ETCD 高可用问题.md -------------------------------------------------------------------------------- /network/proxy&server/apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/apisix/README.md -------------------------------------------------------------------------------- /network/proxy&server/apisix/_img/flow-plugin-internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/apisix/_img/flow-plugin-internal.png -------------------------------------------------------------------------------- /network/proxy&server/apisix/如何编写 APISIX lua 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/apisix/如何编写 APISIX lua 插件.md -------------------------------------------------------------------------------- /network/proxy&server/apisix/案例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/apisix/案例.md -------------------------------------------------------------------------------- /network/proxy&server/caddy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/caddy/README.md -------------------------------------------------------------------------------- /network/proxy&server/caddy/docker-compose-static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/caddy/docker-compose-static.yml -------------------------------------------------------------------------------- /network/proxy&server/envoy/Envoy Admin API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/Envoy Admin API.md -------------------------------------------------------------------------------- /network/proxy&server/envoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/README.md -------------------------------------------------------------------------------- /network/proxy&server/envoy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/docker-compose.yml -------------------------------------------------------------------------------- /network/proxy&server/envoy/dynamic-config/cds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/dynamic-config/cds.yaml -------------------------------------------------------------------------------- /network/proxy&server/envoy/dynamic-config/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/dynamic-config/envoy.yaml -------------------------------------------------------------------------------- /network/proxy&server/envoy/dynamic-config/lds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/dynamic-config/lds.yaml -------------------------------------------------------------------------------- /network/proxy&server/envoy/http/REAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/http/REAME.md -------------------------------------------------------------------------------- /network/proxy&server/envoy/static-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/static-config.yaml -------------------------------------------------------------------------------- /network/proxy&server/envoy/扩展 Envoy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/envoy/扩展 Envoy.md -------------------------------------------------------------------------------- /network/proxy&server/ipvs/README.md: -------------------------------------------------------------------------------- 1 | ## IPVS/LVS 2 | 3 | to be done 4 | -------------------------------------------------------------------------------- /network/proxy&server/keepalived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/keepalived/README.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/Nginx 学习笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/Nginx 学习笔记.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/Nginx 缓存配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/Nginx 缓存配置.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/Openresty 学习笔记.md: -------------------------------------------------------------------------------- 1 | # Openresty 学习笔记 2 | 3 | NYI(not yet implemented) 检测命令:`resty -j v -e 'xxx'` 4 | 5 | ## 参考资料 6 | 7 | - [OpenResty从入门到实战 - 温铭](https://time.geekbang.org/column/intro/186) 8 | -------------------------------------------------------------------------------- /network/proxy&server/nginx/PROXY 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/PROXY 协议.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/README.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/Static File Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/Static File Server.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/nginx 常见案例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/nginx 常见案例.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/nginx 常见错误配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/nginx 常见错误配置.md -------------------------------------------------------------------------------- /network/proxy&server/nginx/nginx.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/nginx.conf.sample -------------------------------------------------------------------------------- /network/proxy&server/nginx/性能优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/nginx/性能优化.md -------------------------------------------------------------------------------- /network/proxy&server/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/traefik/README.md -------------------------------------------------------------------------------- /network/proxy&server/traefik/docker-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/traefik/docker-mode/README.md -------------------------------------------------------------------------------- /network/proxy&server/traefik/docker-mode/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/traefik/docker-mode/docker-compose.yml -------------------------------------------------------------------------------- /network/proxy&server/traefik/file-mode/config/dynamic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/traefik/file-mode/config/dynamic.yml -------------------------------------------------------------------------------- /network/proxy&server/traefik/file-mode/config/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/traefik/file-mode/config/traefik.yml -------------------------------------------------------------------------------- /network/proxy&server/traefik/file-mode/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/traefik/file-mode/docker-compose.yml -------------------------------------------------------------------------------- /network/proxy&server/常见问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/常见问题.md -------------------------------------------------------------------------------- /network/proxy&server/负载均衡算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/负载均衡算法.md -------------------------------------------------------------------------------- /network/proxy&server/高负载下网关层常见问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/proxy&server/高负载下网关层常见问题.md -------------------------------------------------------------------------------- /network/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/README.md -------------------------------------------------------------------------------- /network/security/VPN 协议研究.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/VPN 协议研究.md -------------------------------------------------------------------------------- /network/security/wireguard-kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/wireguard-kubernetes/README.md -------------------------------------------------------------------------------- /network/security/wireguard-kubernetes/tester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/wireguard-kubernetes/tester.yaml -------------------------------------------------------------------------------- /network/security/wireguard-kubernetes/wireguard-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/wireguard-kubernetes/wireguard-daemonset.yaml -------------------------------------------------------------------------------- /network/security/统一的账号权限系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/统一的账号权限系统.md -------------------------------------------------------------------------------- /network/security/认证授权与数字加密.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/network/security/认证授权与数字加密.md -------------------------------------------------------------------------------- /neuroscience/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/neuroscience/README.md -------------------------------------------------------------------------------- /os/macos/IOS 自动化构建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/os/macos/IOS 自动化构建.md -------------------------------------------------------------------------------- /os/macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/os/macos/README.md -------------------------------------------------------------------------------- /os/macos/permission-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/os/macos/permission-issues.md -------------------------------------------------------------------------------- /os/macos/yabai 窗口管理器.md: -------------------------------------------------------------------------------- 1 | 已迁移至 2 | [MacOS 窗口管理器 yabai 玩耍笔记](https://thiscute.world/posts/macos-window-manager-yabai-usage/) 3 | -------------------------------------------------------------------------------- /os/windows/REAMD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/os/windows/REAMD.md -------------------------------------------------------------------------------- /other/Power Bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/Power Bank.md -------------------------------------------------------------------------------- /other/android/android-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/android/android-tools.md -------------------------------------------------------------------------------- /other/android/app 签名.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/android/app 签名.md -------------------------------------------------------------------------------- /other/crawler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/crawler/README.md -------------------------------------------------------------------------------- /other/mqtt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/mqtt/README.md -------------------------------------------------------------------------------- /other/mqtt/emqx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/mqtt/emqx/README.md -------------------------------------------------------------------------------- /other/mqtt/emqx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/mqtt/emqx/docker-compose.yml -------------------------------------------------------------------------------- /other/vpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/vpn/README.md -------------------------------------------------------------------------------- /other/vpn/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/other/vpn/docker-compose.yml -------------------------------------------------------------------------------- /pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/README.md -------------------------------------------------------------------------------- /pl/c#/C# AST 语法树.md: -------------------------------------------------------------------------------- 1 | ## 如何扫描出 C# 代码每个 Web API 可能抛出的异常? 2 | -------------------------------------------------------------------------------- /pl/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/c/README.md -------------------------------------------------------------------------------- /pl/c/debug.md: -------------------------------------------------------------------------------- 1 | # Debug 2 | 3 | - [水一水GDB调试器的用法(入门+进阶) - 0xFFFF](https://www.jezzamon.com/fourier/zh-cn.html) 4 | -------------------------------------------------------------------------------- /pl/c/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/c/io.md -------------------------------------------------------------------------------- /pl/data-dsl/如何正确地使用静态语言处理结构未知的 Json xml html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/data-dsl/如何正确地使用静态语言处理结构未知的 Json xml html.md -------------------------------------------------------------------------------- /pl/elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/elixir/README.md -------------------------------------------------------------------------------- /pl/golang/10. 测试与性能分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/10. 测试与性能分析.md -------------------------------------------------------------------------------- /pl/golang/11. Go 语言的 AST 语法树.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pl/golang/2. 引用类型与值类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/2. 引用类型与值类型.md -------------------------------------------------------------------------------- /pl/golang/3. 字符串.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/3. 字符串.md -------------------------------------------------------------------------------- /pl/golang/7. 并发编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/7. 并发编程.md -------------------------------------------------------------------------------- /pl/golang/Go 最佳实践.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/Go 最佳实践.md -------------------------------------------------------------------------------- /pl/golang/Go 语言私有依赖的拉取.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/Go 语言私有依赖的拉取.md -------------------------------------------------------------------------------- /pl/golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/README.md -------------------------------------------------------------------------------- /pl/golang/codes/learn_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/codes/learn_image.go -------------------------------------------------------------------------------- /pl/golang/codes/learn_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/codes/learn_io.go -------------------------------------------------------------------------------- /pl/golang/codes/learn_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/codes/learn_slice.go -------------------------------------------------------------------------------- /pl/golang/codes/learn_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/codes/learn_string.go -------------------------------------------------------------------------------- /pl/golang/codes/prime_factors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/codes/prime_factors.go -------------------------------------------------------------------------------- /pl/golang/containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/containers.md -------------------------------------------------------------------------------- /pl/golang/install-golang-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/golang/install-golang-env.sh -------------------------------------------------------------------------------- /pl/java/IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/java/IO.md -------------------------------------------------------------------------------- /pl/java/Java 中文编码分析.md: -------------------------------------------------------------------------------- 1 | 已迁移至: 2 | -------------------------------------------------------------------------------- /pl/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/java/README.md -------------------------------------------------------------------------------- /pl/java/线程的同步与异步.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/java/线程的同步与异步.md -------------------------------------------------------------------------------- /pl/java/适合阅读的源码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/java/适合阅读的源码.md -------------------------------------------------------------------------------- /pl/julia/Julia 学习笔记(一):数组.md: -------------------------------------------------------------------------------- 1 | 已迁移至: 2 | -------------------------------------------------------------------------------- /pl/julia/Julia 学习笔记(二)类型.md: -------------------------------------------------------------------------------- 1 | > Julia 的主要特征在于**类型系统**和**多重派发** 2 | 3 | > 个人向,只会记录一些需要注意的点。 4 | -------------------------------------------------------------------------------- /pl/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/README.md -------------------------------------------------------------------------------- /pl/python/concurrent/Python 并发编程:PoolExecutor 篇.md: -------------------------------------------------------------------------------- 1 | 已迁移至: 2 | -------------------------------------------------------------------------------- /pl/python/concurrent/Python 并发编程:进程线程篇.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/concurrent/Python 并发编程:进程线程篇.md -------------------------------------------------------------------------------- /pl/python/concurrent/Python 异步编程笔记:asyncio.md: -------------------------------------------------------------------------------- 1 | 已迁移至: 2 | -------------------------------------------------------------------------------- /pl/python/dataclass pydantic 注意事项.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/dataclass pydantic 注意事项.md -------------------------------------------------------------------------------- /pl/python/date_and_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/date_and_time.py -------------------------------------------------------------------------------- /pl/python/flask/README.md: -------------------------------------------------------------------------------- 1 | # Flask 源码阅读笔记 2 | -------------------------------------------------------------------------------- /pl/python/other/Scrapy 学习笔记(一)数据提取.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/other/Scrapy 学习笔记(一)数据提取.md -------------------------------------------------------------------------------- /pl/python/python 的 AST 语法树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/python 的 AST 语法树.md -------------------------------------------------------------------------------- /pl/python/read_sni_from_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/read_sni_from_pcap.py -------------------------------------------------------------------------------- /pl/python/utils/README.md: -------------------------------------------------------------------------------- 1 | # Python 实用工具库 2 | 3 | 来自我的 DevOps 日常积累。 4 | -------------------------------------------------------------------------------- /pl/python/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pl/python/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/utils/common.py -------------------------------------------------------------------------------- /pl/python/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/utils/file.py -------------------------------------------------------------------------------- /pl/python/utils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/utils/shell.py -------------------------------------------------------------------------------- /pl/python/utils/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/utils/ssh.py -------------------------------------------------------------------------------- /pl/python/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/utils/time.py -------------------------------------------------------------------------------- /pl/python/测试工具.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/python/测试工具.md -------------------------------------------------------------------------------- /pl/regular-expression/Java Python Elixir 正则库使用上的注意事项.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/regular-expression/Java Python Elixir 正则库使用上的注意事项.md -------------------------------------------------------------------------------- /pl/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/rust/README.md -------------------------------------------------------------------------------- /pl/sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/sql/README.md -------------------------------------------------------------------------------- /pl/theory/《代码之髓》笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/theory/《代码之髓》笔记.md -------------------------------------------------------------------------------- /pl/theory/编程的宗派.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/theory/编程的宗派.md -------------------------------------------------------------------------------- /pl/theory/编程的智慧.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/theory/编程的智慧.md -------------------------------------------------------------------------------- /pl/theory/谈程序的通用性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/theory/谈程序的通用性.md -------------------------------------------------------------------------------- /pl/wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/wasm/README.md -------------------------------------------------------------------------------- /pl/各语言通用的一些知识点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/pl/各语言通用的一些知识点.md -------------------------------------------------------------------------------- /psychology/ADHD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/psychology/ADHD/README.md -------------------------------------------------------------------------------- /psychology/ADHD/正念冥想疗法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/psychology/ADHD/正念冥想疗法.md -------------------------------------------------------------------------------- /psychology/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/psychology/README.md -------------------------------------------------------------------------------- /psychology/科学心理学.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/psychology/科学心理学.md -------------------------------------------------------------------------------- /psychology/阿勒德心理学.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/psychology/阿勒德心理学.md -------------------------------------------------------------------------------- /swimming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/swimming/README.md -------------------------------------------------------------------------------- /swimming/swimming-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/swimming/swimming-styles.md -------------------------------------------------------------------------------- /swimming/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/swimming/tutorial.md -------------------------------------------------------------------------------- /telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/README.md -------------------------------------------------------------------------------- /telemetry/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/logging/README.md -------------------------------------------------------------------------------- /telemetry/logging/efk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/logging/efk/README.md -------------------------------------------------------------------------------- /telemetry/logging/efk/fluentd-daemonset-elasticsearch-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/logging/efk/fluentd-daemonset-elasticsearch-rbac.yaml -------------------------------------------------------------------------------- /telemetry/logging/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/logging/loki/README.md -------------------------------------------------------------------------------- /telemetry/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/README.md -------------------------------------------------------------------------------- /telemetry/metrics/dashboard - grafana/Grafana笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/dashboard - grafana/Grafana笔记.md -------------------------------------------------------------------------------- /telemetry/metrics/dashboard - grafana/使用 jsonnet 编写 grafana 配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/dashboard - grafana/使用 jsonnet 编写 grafana 配置.md -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/PromQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/PromQL.md -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/Prometheus 的部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/Prometheus 的部署.md -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/Prometheus 的配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/Prometheus 的配置.md -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/README.md -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/alertmanager/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/alertmanager/config.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/caddy/Caddyfile -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/docker-compose.exporters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/docker-compose.exporters.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/docker-compose.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/docker_containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/docker_containers.json -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/docker_host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/docker_host.json -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/monitor_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/monitor_services.json -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/nginx_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/grafana/provisioning/dashboards/nginx_container.json -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/prometheus/alert_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/prometheus/alert_rules.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/prometheus/prometheus.yml -------------------------------------------------------------------------------- /telemetry/metrics/prometheus/dockprom/prometheus/record_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/metrics/prometheus/dockprom/prometheus/record_rules.yml -------------------------------------------------------------------------------- /telemetry/tracing - jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/telemetry/tracing - jaeger/README.md -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/performance-testing/Locust 自动化压测.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/performance-testing/Locust 自动化压测.md -------------------------------------------------------------------------------- /testing/performance-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/performance-testing/README.md -------------------------------------------------------------------------------- /testing/performance-testing/locust-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/performance-testing/locust-master.yaml -------------------------------------------------------------------------------- /testing/performance-testing/locust-slaves.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/performance-testing/locust-slaves.yaml -------------------------------------------------------------------------------- /testing/performance-testing/如何模拟大量 tcp 连接.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/performance-testing/如何模拟大量 tcp 连接.md -------------------------------------------------------------------------------- /testing/performance-testing/网关功能验证.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/performance-testing/网关功能验证.md -------------------------------------------------------------------------------- /testing/测试的道理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/测试的道理.md -------------------------------------------------------------------------------- /testing/谈测试驱动开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/testing/谈测试驱动开发.md -------------------------------------------------------------------------------- /trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan4yin/knowledge/HEAD/trading/README.md --------------------------------------------------------------------------------