有用的在线网站

WoW! CodeShare.io

Teach people to program

Share your code with students and peers then educate them. Universities and colleges around the world use Codeshare every day.

pcopy

我很喜欢,也常用的一个分享代码(文字)的网站:

很有用的网站,基于命令行来分享文字

# Show curl help page
curl nopaste.net

# Copy/upload to clipboard (POST/PUT both work)
curl -d Howdy nopaste.net/hi-there
curl -T germany.jpg https://nopaste.net/germany

# Paste/download from clipboard
curl https://nopaste.net/hi-there

最常用,上传代码到一个随机的地址

curl -T 1.cpp https://nopaste.net/random

写成一个shell函数使用,加入到~/.bashrc~/.zshrc

nopaste() {
    curl -T $1 https://nopaste.net/random
}

分享文字

有时间需要把代码或文件传给学生,或者学生在课下询问题目

cppreference

在线c++编译器

在线gdb