上一页 1 2 3 4 5 6 ··· 28 下一页
摘要: 参考:Qt 编程指南 一个最小化工作示例:minimal | GitHub 源文件 main.cpp #include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication app(argc, 阅读全文
posted @ 2024-07-08 22:16 Undefined443 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 目录结构 project_root/ ├── bin/ # 可执行文件目录 │ ├── my_app # 可执行文件 │ └── ... # 其他可执行文件或脚本 │ ├── build/ # 编译产物目录 │ └── ... # 编译生成的中间文件和可执行文件 │ ├── include/ # 头 阅读全文
posted @ 2024-07-08 21:50 Undefined443 阅读(10) 评论(0) 推荐(0) 编辑
摘要: chezmoi(发音 /ʃeɪ mwa/ (shay-moi)):在多台不同的机器上安全地管理你的 dotfiles。 安装 macOS: brew install chezmoi Ubuntu: snap install chezmoi --classic 在单台机器上使用 初始化 chezmoi 阅读全文
posted @ 2024-07-07 12:23 Undefined443 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 安装 macOS: brew install aliyun-cli Linux: wget https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-amd64.tgz tar xzvf aliyun-cli-linux-3.0.16-amd64.tg 阅读全文
posted @ 2024-07-06 16:48 Undefined443 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 安装 macOS: brew install apache2 Ubuntu: sudo apt install apache2 使用 配置文件路径: macOS: /opt/homebrew/etc/httpd/httpd.conf Ubuntu: /etc/apache2/apache2.conf 阅读全文
posted @ 2024-07-05 12:05 Undefined443 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Perl 是一种高效、功能强大且灵活的编程语言,广泛用于文本处理、系统管理、网络编程、Web 开发等领域。它由 Larry Wall 在 1987 年首次发布,名字来源于“Practical Extraction and Report Language”。 Hello World #!/usr/bi 阅读全文
posted @ 2024-07-02 20:30 Undefined443 阅读(4) 评论(0) 推荐(0) 编辑
摘要: PHP(Hypertext Preprocessor)是一种广泛用于 Web 开发的服务器端脚本语言。它可以嵌入到 HTML 中,用于生成动态网页。 基本语法 PHP 代码通常嵌入在 HTML 中,使用 <?php ... ?> 标签包围。 <!DOCTYPE html> <html> <head> 阅读全文
posted @ 2024-07-02 20:11 Undefined443 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Hexo 是一个静态博客站点生成工具,可以将 Markdown 格式的文档转换成静态页面,非常适合用来做个人技术博客。 常用命令 建站 npx hexo-cli init blog # 初始化一个博客站 npx hexo-cli server # 启动博客站,用于调试 npx hexo-cli ge 阅读全文
posted @ 2024-07-02 02:01 Undefined443 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Nginx 由俄罗斯程序员 Igor 开发,目的是解决 C10K 问题。Nginx 和 Apache HTTP Server 是目前最流行的 Web 服务器。 安装 macOS: brew install nginx Ubuntu: sudo apt install nginx Docker: do 阅读全文
posted @ 2024-07-02 01:55 Undefined443 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 打开 chrome://flags/#enable-parallel-downloading,将 Parallel downloading 设置为 Enabled 参考:为什么Chrome浏览器下载速度非常慢 | 简书 阅读全文
posted @ 2024-06-29 20:08 Undefined443 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 28 下一页