Zxilly
Calm down
Zxilly's Blog

代码
文章归档

在 S390X 平台上配置基于 lxd 的 JIT GitHub Actions Self-Hosted Runner

记录一下操作流程,以后升级的时候用得上 Runner 主线版本暂不支持 S390X,使用 IBM 的修改版。 anup-kodlekere/gaplib Manager 没有预编译的二进制,clone 后自行构建镜像,S390X 上没有 upx,记得去除 Dockerfile 中相应的命令。 cloudbase/garm Image anup-kodleker…

   2024-11-21   0   Read More

仓颉语言的 Playground

给华为的新编程语言 仓颉 写了个 Playground 代码 在线体验 https://playground.cj.zxilly.dev/ 现在想想,play.cj.zxilly.dev 也许会更好点,但是已经有外链了也不好改,就这样吧 技术 主要是 Next.js 和 monaco,monaco 只提供了基本的高亮,lsp 相关的补全计划…

   2024-10-31   0   Read More

在 Intel DevCloud 上执行训练的 Workaround

不使用 Intel 发行版 Python 会导致 libtorch.so 符号不匹配,用 conda 创建新环境。 不要使用 conda 安装 ipex pip 安装 ipex,注意不要使用最新版,因为二进制和预装的驱动不匹配,没有 root 权限无法手动安装。 conda 官方的 intel 库已被移除,而 intel 自行托管的…

   2024-08-15   0   Read More

slices.Sort 和 sort.Sort 的简单 benchmark

测试代码 package gotmp import ( "math/rand" "slices" "sort" "testing" ) type IntSlice []int func (s IntSlice) Len() int { return len(s) } func (s IntSlice) Less(i, j int) bool { re…

   2024-08-06   0   Read More

Try Redis 中文翻译

redis/try.redis 项目中教程部分的中文翻译 Redis 属于键值存储数据库家族。 键值存储的本质是能够在一个键中存储一些称为值的数据。只有当我们知道用于存储它的确切键时,才能稍后检索这些数据。 Redis 通常被称为数据结构服务器,因为它有一个外部的键值存储外壳,但每…

   2024-08-04   0   Read More

GoLand 2024.1 中 Python 插件停止工作

错误 官方报告: Python Community Edition plugin doesn't work in GoLand Python Plugin Not working on Goland 2024.1 Workaround 安装并激活 Toml 插件 Fix 升级到 2024.1.1( 2024/04/25 尚未发布)

   2024-04-25   0   Read More
   2023-08-30   0   Read More
状态
2022-04-27

因为 Google Analytics 强制要求升级到 GA4,且 ga-proxy 已停止更新,此站点将不再使用 Google Analytics 追踪访问状态。

   2022-04-27   3   Read More

Docker 避免启动参数与配置文件冲突

现象 在 daemon.json 中设置 hosts 后,启动 Docker 显示 unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file…

   2022-04-26   0   Read More
加载更多