欢迎来到我的个人 AI 技术博客!这是一个基于 Hugo 构建的静态网站,专注于分享 AI 领域的深度内容和前沿技术。
本博客涵盖以下主要领域:
- 论文解读:深度解析最新的 AI/ML 论文,从理论到实践
- 技术分析:前沿技术深度剖析,包括大语言模型、多智能体系统等
- 开源项目:优秀开源项目介绍与实战指南
- 行业动态:AI 领域最新发展趋势和重要事件
- 产品评测:商业 AI 产品深度体验与对比分析
- 知名企业:OpenAI、Google、微软、百度、阿里巴巴等
- 技术领域:LLM、RAG、Agent、多模态、训练优化
- 开发工具:Cursor、Claude MCP、LangChain、AutoGen 等
- 名人访谈:行业专家观点与技术分享
- 框架:Hugo - 快速静态网站生成器
- 主题:DoIt & PaperMod - 响应式设计,支持暗色模式
- 部署:GitHub Pages - 自动化 CI/CD
- 语言支持:中文/英文双语
- 搜索功能:集成全文搜索
- 评论系统:支持多种评论插件
- Hugo Extended v0.120.0+
- Git
- Node.js (可选,用于主题开发)
# 克隆项目
git clone https://github.com/hobbytp/hobbytp.github.io.git
cd hobbytp.github.io
# 初始化子模块(主题)
git submodule update --init --recursive
# 启动开发服务器
hugo server -D --bind 0.0.0.0
# 访问 http://localhost:1313
# 使用 Docker Compose
docker-compose up -d
# 或使用 Docker
docker build -t ai-blog .
docker run -p 1313:1313 ai-blog
├── content/ # 内容目录
│ ├── zh/ # 中文内容
│ │ ├── papers/ # 论文解读
│ │ ├── projects/ # 项目介绍
│ │ ├── news/ # 行业动态
│ │ └── ...
│ ├── en/ # 英文内容
│ └── draft/ # 草稿文件
├── themes/ # Hugo 主题
│ ├── DoIt/ # 主主题
│ └── PaperMod/ # 备用主题
├── static/ # 静态资源
├── layouts/ # 自定义布局
├── config.toml # 网站配置
└── docker-compose.yml # Docker 配置
# 创建新的技术文章
hugo new content/zh/technologies/new-article.md
# 创建新的论文解读
hugo new content/zh/papers/paper-review.md
# 创建项目介绍
hugo new content/zh/projects/project-intro.md
---
title: "文章标题"
date: 2024-01-15T10:00:00+08:00
draft: false
tags: ["AI", "LLM", "技术"]
categories: ["技术分析"]
author: "作者名"
description: "文章简介"
---
- 中文:主要语言,包含完整内容
- 英文:部分重要内容的英文版本
- 配置文件:
i18n/
目录下的语言配置
主要配置文件:config.toml
- CSS 文件:
assets/css/main.css
- 布局文件:
layouts/
目录
集成了全文搜索,支持中英文内容检索。
- 自动部署:推送到 main 分支自动触发 GitHub Pages 部署
- 构建状态:可在 Actions 页面查看构建状态
- CDN 加速:静态资源通过 CDN 加速访问
欢迎各种形式的贡献:
- 内容贡献:提交优质的技术文章或翻译
- 错误修正:发现错误请提交 Issue 或 PR
- 功能建议:通过 Issue 提出新功能建议
- 主题优化:改进网站设计和用户体验
- Fork 项目
- 创建特性分支
- 提交更改
- 发起 Pull Request
- GitHub Issue:提交问题或建议
- 邮箱:通过 GitHub Profile 联系
- 博客评论:在相应文章下留言
本项目采用 MIT 许可证,欢迎自由使用和分发。
感谢以下开源项目:
- Hugo - 静态网站生成器
- DoIt 主题 - 美观的 Hugo 主题
- PaperMod 主题 - 简洁的 Hugo 主题
最后更新:{{ .Date.Format "2006-01-02" }}
⭐ 如果这个项目对你有帮助,请给个 Star 支持一下!
Welcome to my personal AI tech blog! This is a Hugo-based static website focused on sharing in-depth AI content and cutting-edge technologies.
This blog covers the following main areas:
- Paper Reviews: In-depth analysis of the latest AI/ML papers, from theory to practice
- Technical Analysis: Deep dive into frontier technologies, including LLMs, multi-agent systems, etc.
- Open Source Projects: Introduction and practical guides for excellent open source projects
- Industry Trends: Latest developments and important events in the AI field
- Product Reviews: In-depth experience and comparative analysis of commercial AI products
- Framework: Hugo - Fast static site generator
- Themes: DoIt & PaperMod - Responsive design with dark mode support
- Deployment: GitHub Pages - Automated CI/CD
- Language Support: Chinese/English bilingual
- Search: Integrated full-text search
- Comments: Support for multiple comment plugins
- Hugo Extended v0.120.0+
- Git
- Node.js (optional, for theme development)
# Clone the project
git clone https://github.com/hobbytp/hobbytp.github.io.git
cd hobbytp.github.io
# Initialize submodules (themes)
git submodule update --init --recursive
# Start development server
hugo server -D --bind 0.0.0.0
# Visit http://localhost:1313
All forms of contributions are welcome:
- Content Contribution: Submit quality technical articles or translations
- Error Correction: Submit Issues or PRs when finding errors
- Feature Suggestions: Propose new features through Issues
- Theme Optimization: Improve website design and user experience
- GitHub Issue: Submit questions or suggestions
- Email: Contact through GitHub Profile
- Blog Comments: Leave comments under relevant articles
This project is licensed under the MIT License, free to use and distribute.
Last Updated: {{ .Date.Format "2025-07-02" }}
⭐ If this project helps you, please give it a Star for support!