Appearance
第63期 06 week share 2026-02-05
本周我读到有趣的文章
1、roubao
TIP
Android Automation Tool Based on Vision-Language Models
TIP
stateofjs2025 是一个关于 JavaScript 生态系统的年度调查报告,涵盖了各种库、框架和工具的使用情况和趋势。
TIP
The AI Browser Automation Framework
TIP
HTTP/1.0 和 HTTP/1.1 是两种不同版本的 HTTP 协议,选择性禁用它们可以提高网络性能和安全性。
TIP
HTML 在不断发展,新增了一些属性和功能,如 <dialog> 元素、<template> 元素、<picture> 元素等,这些新特性可以帮助开发者更好地构建现代化的网页。
TIP
Anthropic 官方的 Claude Code 免费入门教程,一共15节视频课,总长约1小时。
TIP
Windows 桌面应用,查看端口占用情况
8、BASH
bash
# curl 下载文件
curl -O https://example.com/file.txt
# curl 下载文件并保存为指定名称
curl -o myfile.txt https://example.com/file.txt
# curl 下载文件并显示下载进度
curl -# -O https://example.com/file.txt