Appearance
第67期 012 week share 2026-03-19
本周我读到有趣的文章
TIP
Get Started with AI and Machine Learning,提供从基础到进阶的AI与机器学习课程。
TIP
官方开发资源入口,包含指南、示例与实战文档,适合搭建从 PoC 到上线的完整路径。
3、etcd
TIP
Distributed reliable key-value store for the most critical data of a distributed system。
4、vmprint
TIP
A pure-JS, tiny typesetting engine with bit-perfect PDF output on everything—from Cloudflare Workers to the browser. No more Headless Chrome to just print text. AND -- try the static demos on the home page below and see for yourself.
5、daub
TIP
个精心设计的 CSS 组件库——温暖的表面、丰富的触感、20 个主题系列。仅需两个文件,无需构建步骤,即可拥有完整的组件库
TIP
About Lightpanda: the headless browser designed for AI and automation
7、Kula
TIP
Lightweight, self-contained Linux® server monitoring tool
8、BASH
bash
1. df - Report file system disk space usage
demo: df -h # human-readable format
demo: df -T # include filesystem type
demo: df -i # show inode usage
2. du - Estimate file space usage
demo: du -h /path/to/directory # human-readable format
demo: du -s /path/to/directory # summarize total size
demo: du -a /path/to/directory # include all files
3. ifconfig - Configure network interfaces
demo: ifconfig -a # show all interfaces
demo: ifconfig eth0 up # bring up interface
demo: ifconfig eth0 down # bring down interface