Zhenda's Blog

Stay hungry, stay humble, and keep shipping value.

Decentralization

去中心化在去中心化网络中,设计出合理的规则和技术方案,让每个节点在不依赖中心机构的情况下,能够公平、透明地参与到网络运行中,是去中心化技术的关键。 信任问题是去中心化系统需要解决的核心问题。它通过共识机制、防恶意行为、数据一致性、隐私保护、激励机制等手段,来保证网络的安全性、稳定性和可持续发展。 p2p网络P2P网络是一种去中心化的网络结构,节点之间直接连 …

Python Pip

python 工具 pip 用来安装第三方包 命令 类别 命令 含义 在线安装 pip install xxx pip install -r requirements.txt 在线换源安装 pip config list 查看源 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxx 换源 离线 …

Go_base

[toc] 应用场景Web 后端(高并发) → Go(必选) 命令行工具(发布) → Go(体验好) 资料 https://go.dev/doc/#references https://tour.go-zh.org/basics/1 https://pkg.go.dev/std 一个Go项目中只能有一个 main 包和一个 main() 函数 在Go语言中, …

Python_basic

应用场景 数据分析(几行代码处理Excel) Web开发(Flask/Django) 自动化脚本(批量处理文件、爬虫) AI/机器学习(最强生态) python 数据类型和绝大多数的文件或编程语言一样 基础的: num str None 复杂的: list, dict, set python 函数中, 参数的定义顺序 1 2 3 4 5 6 7 8 9 10 …

Css Guide

css选择器 https://developer.mozilla.org/zh-CN/docs/Learn_web_development/Core/Styling_basics/Basic_selectors …