Git
移除已经提交的文件:
git rm -r --cached .
Google Scholar
Semantic Scholar
Web of Science
Connected Papers
Litmaps
Open Knowledge Maps
NN SVG: FCNN, LeNet, AlexNet
PlotNeuralNet: Latex code for making neural networks diagrams
Font Awesome
AI 生成 Icon: https://iconkit.ai/
华为云 开发者空间
阿里云 云工开物 高校生领 300 元云抵扣金
腾讯云, DNSPod
赛博活佛 Cloudflare
Microsoft Azure
Amazon Web Services (AWS)
curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh && sudo bash quick_start.sh
GitHub - ZangXuanyi/getting-started-handout: 北京大学计算机大中衔接手册
The Missing Semester of Your CS Education 计算机教育中缺失的一课 · the missing semester of your cs education
小艺(华为)
DeepSeek 贵校专属
豆包(字节)
Kimi
纳米AI(360)
秘塔AI搜索
智谱清言
Qwen(阿里)
文心一言(百度)
ChatGPT
Claude
Gemini(Google) Google AI Studio
Copilot(Microsoft)
Perplexity
Grok
Trae(字节) 国际版
CodeGeeX(智谱)
通义灵码(阿里)
文心快码(百度)
Augment Code: $50/mo.
Cursor: $20/mo.
Windsurf - The most powerful AI Code Editor
Void
Claude Code
Gemini CLI
Copilot(GitHub)
Kiro(Amazon)
压缩视频保留:
ffmpeg -i _input_file_ -c:v libx265 -c:a copy -c:s copy -map 0 -tag:v hvc1 -movflags faststart -crf 30 -preset superfast _output_file_
-c:a copy
: 保留音频不重新编码-c:s copy -map 0
: 保留全部字幕-movflags
: 更新元数据-c:v libx265 -tag:v hvc1
-c:v libx264 -tag:v avc1
更新元数据:
ffmpeg -i input.mp4 -metadata title="新标题" -metadata artist="新艺术家" -codec copy output.mp4
-codec copy
: 保留视频音频流剪裁音频:
ffmpeg -i input.mp3 -ss 00:00:30 -to 00:01:00 -c copy output.mp3
在 ~/.gitconfig
中添加以下内容:
[http "https://github.com"]
proxy = socks5://127.0.0.1:7897
[https "https://github.com"]
proxy = socks5://127.0.0.1:7897
其中 7897
为你的代理端口,请在代理软件中查询并替换。
打开 C:\ProgramData\ssh\sshd_config
文件,注释以下内容:
# Match Group administrators
# AuthorizedKeysFile __PROGRAMDATA__/ssh/administrators_authorized_keys
以管理员模式打开 PowerShell,重启 sshd 服务:
net stop sshd
net start sshd
然后就可以用秘钥连接了。