A simple blog built by Django
WezTerm 配置笔记
| Published by rcdfrd WezTerm 配置笔记
我用过 iTerm2、Alacritty、Windows Terminal,最后留下的是 WezTerm。原因很简单:我在三个系统上开发,WezTerm 让我只维护一份配置文件。
WezTerm 跑在 Windows、macOS、Linux 上,用 GPU 渲染,配置文件是 Lua 写的。
配置拆解
按系统选 Shell
检测 target_triple 来决定启动什么
Read more ⟶
Claude Code with Kat-Coder 教程
| Published by rcdfrd Claude Code with Kat-Coder 教程
本文介绍如何在本地环境中配置并使用 Claude Code(通过 Kat-Coder 的 Streamlake 接口)进行开发。
一、安装 Node.js
访问 Node.js 官方网站下载对应操作系统的安装包:
https://nodejs.org/zh-cn/download
安装完成后,打开终端(Windows 用户可使用 Win
Read more ⟶
GIU 学习 教程
| Published by rcdfrd Hello World
package main
import (
g "github.com/AllenDang/giu"
)
func loop() {
g.SingleWindow().Layout(
g.Label("Hello world from giu"),
)
}
func main() {
wnd := g.NewMasterWindow("Hello worl
Read more ⟶