Appearance
第75期 021 week share 2026-05-15
本周我读到有趣的文章
TIP
《从零开始构建智能体》——从零开始的智能体原理与实践教程
2、Kibo UI
TIP
Kibo UI is a custom registry of composable, accessible and extensible components designed for use with shadcn/ui. Free and open source, forever.
TIP
BleachBit system cleaner for Windows and Linux
4、Cicada
TIP
一个网页白板,不需要服务器,只是单个 13KB 的 HTML 文件,没有任何依赖,绘制的图形保存在 URL 里面
5、OpenClip
TIP
开源的 Web 服务,通过 AI 自动从 Bilibili/YouTube 下载视频,提取其中精彩时刻
6、SSHM
TIP
SSHM is a beautiful command-line tool that transforms how you manage and connect to your SSH hosts. Built with Go and featuring an intuitive TUI interface, it makes SSH connection management effortless and enjoyable
7、BASH
bash
# 宿主机 -> 容器
docker cp ./test.txt mynginx:/tmp/test.txt
# 容器 -> 宿主机
docker cp mynginx:/etc/nginx/nginx.conf ./nginx.conf
# 查看网络
docker network ls
# 创建网络
docker network create mynet
# 容器加入网络
docker run -d --name nginx1 --network mynet nginx
docker run -d --name redis1 --network mynet redis