Skip to content

Instantly share code, notes, and snippets.

View trevery's full-sized avatar

火山 trevery

View GitHub Profile
@maboloshi
maboloshi / README.md
Last active May 30, 2025 20:31
[Mac下配置Aria2] #macOS #aria2

Mac下配置Aria2

安装和设置 Aria2

# 使用 Homebrew 安装 aria2
brew install aria2

# 创建配置文件aria2.conf和空对话文件aria2.session
mkdir ~/.aria2 && cd ~/.aria2
touch aria2.conf
@shiffman
shiffman / flip.pde
Created October 25, 2015 00:48
Flipping Video in Processing
import processing.video.*;
Capture cam;
void setup() {
size(640, 480);
cam = new Capture(this, 640, 480);
cam.start();
}