Zhenda's Blog

Stay hungry, stay humble, and keep shipping value.

数据可视化资源

dash官方文档: https://dash.plotly.com/tutorial streamlit官方文档: https://docs.streamlit.io/ plotly官方文档: https://plotly.com/python/getting-started/ demo 1 2 3 4 5 6 7 8 9 import …

数据分析资源

numpy官方文档: https://numpy.org/doc/stable/user/absolute_beginners.html pandas官方文档: https://pandas.pydata.org/pandas-docs/stable/user_guide/10min.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 …

Git资源

[toc] 官方文档https://git-scm.com/book/zh/v2 git 重要概念 commit 以 commit 节点为根基, 记录历史, 当前 commit 为 HEAD branch 分支实际上是可移动的指针, 代表一系列commit 用于并行开发 创建删除非常轻量 代码仓库 远程仓库 部署在服务器中, …

Pyqt5指南

使用 python 我们也可以开发桌面应用(在 pc 上运行的软件,pyqt5 好像还不支持手机 app)平时做做小工具还是挺方便的。这次我们一起学习一下 pyqt5 环境安装 1 2 pip install pyqt5 pip install pyqt5-tools python 版本不要过高, 需要适配 pyqt5 ,像 3.8,3.9 是可以的,高版本 …

Linux系统教程

[toc] 文章目的希望 linux 初学者可以通过本章内容,快速入门 linux。文章引用了菜鸟教程的优秀文章,以及网络上的一些图片 linux 的必要性linux 是一个稳定, 安全, 开源,免费的操作系统内核。 支持多用户同时使用。成为了各大公司服务器的首选。 掌握 Linux 可以提高技术就业竞争力。许多 IT 岗位将熟练使用 Linux 作为必备技 …