Everything you care about in one place

Follow feeds: blogs, news, RSS and more. An effortless way to read and digest content of your choice.

Get Feeder

xzhsh.ch

Zhshch's Blog

Get the latest updates from Zhshch's Blog directly as they happen.

Follow now 11 followers

Latest posts

Last updated over 3 years ago

好为人师的人

over 3 years ago

我自认为是一个好为人师的人。讲道理,「好为人师」与「出现在需要表达的场合」的因果关系到底谁先谁后是个问题。 我一直会自责,自己是不是在过分表达

Golang 生成随机数 - 真随机数与伪随机数

over 3 years ago

在GoLang 中,我们可以通过 math/rand 包里的方法来生成一个伪随机数: package main import ( "fmt" "math/rand" ) func...

星辰与废墟

about 4 years ago

言希先生 您有两封邮件。 打开。 发件人:艾拉 Ella@ues.x 收件人:舰队委员会 committee-177@ues.x 抄送:言希 yanxi@gmail.com 发件时间:3121年4月2日 收件时间:2021年4月2日 针对恒星X

Hello World

about 4 years ago

Hello world 博客迁移到Hugo。 如果计划不变的话,将使用GitHub管理,使用Vercel部署。 至于为什么迁移…… 我今天早上一个rm -rf ./*把typ

Docker Compose 配置文件

over 5 years ago

docker compose使用用于简化docker容器启动而设计的工具。其配置文件用于描述容器的启???配置。

学校食堂卖出的人血馒头

over 5 years ago

午饭时间,学校食堂是一个兵家饭家必争之地。

Go 1.13 errors 包优雅的处理异常判断

over 5 years ago

Go 1.13 发布后对 errors 包有进一步的改善,其中errors.Is可以很方便的进行异常的判断。

用 GitHub Actions 自动化发布 Hexo 网站到 GitHub Pages

over 5 years ago

说实话不用每次都执行一大长串部署指令真的香啊!

使用 GitHub Actions 自动构建镜像并推送到阿里云容器镜像服务

over 5 years ago

这两天有个使用Docker部署的项目,寻思着用Actions自动化构建一下试试。过程简单,十分方便。 Step 1 找个存镜像的地方 我用的是阿里云的容器

go get 没反应?启用 goproxy.cn 代理

almost 6 years ago

由于一些众所周知的原因,go get并不能顺利的访问golang.org/x相关的内容。所以执行go get时会长时间没有反应。 对此可以使用GOPROXY这个环境变量设置一个golang.org/x的模块代理。(关于模块代理)

pyenv 与 virtualenv 安装,Python 版本管理使用教程

almost 6 years ago

pyenv是Python版本管理工具。 pyenv可以 安装多个版本的 Python 改变全局的 Python 版本 设置目录级别的 Python 版本 创建和管理 virtual...