我制作了 A Dark Room 增强油猴脚本

// ==UserScript== // @name Batter ADR // @version 2026-02-08 // @description A Dark Room 体验增强 // @author runoneall // @require ...

阅读更多 >>

我制作了一个能把用到的所有 css 和 js 都打包到一起的 go 程序

下载地址: Release v1 · runoneall/htmlbuild 能够自动处理: 从网络中引入的文件,支持解析:http: https: // 从本地引入的文件 支持 <link rel="stylesheet" href=""...

阅读更多 >>

UZI:纯 Golang 实现的终端通讯系统

使用方法首先到 https://github.com/runoneall/uzi/releases 下载最新二进制文件 $ uzi --help 纯 Golang 实现的终端通讯系统 Usage: uzi [flags] uzi [command] Available Commands:...

阅读更多 >>

我制作了一个非常轻量的带桌面 docker 镜像

项目地址: runoneall/tiny-alpine-desktop: Tiny Alpine desktop 它结合了 kincsescsaba/remote-desktop-in-docker: Tiny Alpine desktop with “headless” VNC...

阅读更多 >>

rolua http server 扩展库

该库旨在演示 rolua 与 golang 的无缝集成 // rohttp-server.go package rolib import ( "net/http" "github.com/arnodel/golua/lib/golib" rt &q...

阅读更多 >>

纯 Go 实现的 Lua5.4 编译器/运行时

项目地址:https://github.com/rolua-org/rolua 组织地址:https://github.com/rolua-org 本项目基于 https://github.com/arnodel/golua 进行开发 编写 rolib 扩展以下是一个示例代码,很适合开始 // li...

阅读更多 >>

一个Go写的端口转发工具,非常适合NAT服务器使用

起因是 shareNL 上的 incus 机不能跑docker,在 @RodickYu 的提醒下发现不能使用端口绑定,必须使用 –network host 来启动,但这样以来对于 nat 服务器就特别的不友好,所以有了这个工具 port link 通过一个后台服务端,维护多条端口转发,同时绑定 tc...

阅读更多 >>

云湖邮局开放版

这是一个众乐乐的版本,私人使用请看 使用云湖开放API部署云湖邮局 | Runoneall import PostalMime from "postal-mime"; async function parse(message) { const message_from ...

阅读更多 >>

一个为OpenWrt写的简易HTTP服务器

用 go 编写,完美跨平台 main.go package main import ( "embed" "fmt" "net" "net/http" "os" "path/...

阅读更多 >>

使用Worker搭建多人实时会议

代码非常简单,极容易集成,可以玩玩我的 demo https://oneall.eu.org/weblive async function textresp(text, status = 200) { return new Response(text, { status, ...

阅读更多 >>