LATEST TRANSMISSIONS
ENCRYPTED // PUBLIC KEY DETECTED
Open Source Alternatives to Windows Terminal in 2025
A guide to the best open-source terminal emulators for Windows as alternatives to the default Windows Terminal.
Open Source Alternatives to Terminal.app in 2025
A comprehensive guide to the best open source terminal emulators for macOS as alternatives to the default Terminal.app.
How to Clean Up Disk Space by Finding Large Files Using "find" & "du"
A concise guide on using "du" and "find" commands in Unix systems to locate and manage large files, freeing up disk space effectively.
Quick proxy in bash
Sometimes we need to use proxy in bash, but it is boring and inconvenient for us config and clear proxy for bash everytime when we need to use a proxy. Create a file which will be used as a command in…
终端命令行如何穿越?
开发的时候经常遇到在命令行里访问GitHub和者某些篱笆外的资源不太方便的情况,于是写了一个简单的脚本来快捷实现命令行翻篱笆,原理很简单,就是套娃。 创建一个可执行文件作为命令使用 创建一个文件,保存到/usr/local/bin,这样之后它会被添加到path中,便可以在bash 中当作命令使用 vim /usr/local/bin/proxy 编写翻篱笆脚本 #!/usr/bin/env…