Skip to content

Commit 859e2c5

Browse files
committed
enh: update some blog cover
1 parent c2f14c2 commit 859e2c5

96 files changed

Lines changed: 1084 additions & 7 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.serena/project.yml

Lines changed: 50 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# language of the project (csharp, python, rust, java, typescript, go, cpp, or ruby)
2-
# * For C, use cpp
3-
# * For JavaScript, use typescript
4-
# Special requirements:
5-
# * csharp: Requires the presence of a .sln file in the project folder.
6-
language: python
71

82
# the encoding used by text files in the project
93
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
@@ -67,5 +61,54 @@ excluded_tools: []
6761
# initial prompt for the project. It will always be given to the LLM upon activating the project
6862
# (contrary to the memories, which are loaded on demand).
6963
initial_prompt: ""
70-
64+
# the name by which the project can be referenced within Serena
7165
project_name: "hobbytp.github.io"
66+
67+
# list of mode names to that are always to be included in the set of active modes
68+
# The full set of modes to be activated is base_modes + default_modes.
69+
# If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply.
70+
# Otherwise, this setting overrides the global configuration.
71+
# Set this to [] to disable base modes for this project.
72+
# Set this to a list of mode names to always include the respective modes for this project.
73+
base_modes:
74+
75+
# list of mode names that are to be activated by default.
76+
# The full set of modes to be activated is base_modes + default_modes.
77+
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
78+
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
79+
# This setting can, in turn, be overridden by CLI parameters (--mode).
80+
default_modes:
81+
82+
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
83+
included_optional_tools: []
84+
85+
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
86+
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
87+
fixed_tools: []
88+
89+
90+
# list of languages for which language servers are started; choose from:
91+
# al bash clojure cpp csharp
92+
# csharp_omnisharp dart elixir elm erlang
93+
# fortran fsharp go groovy haskell
94+
# java julia kotlin lua markdown
95+
# matlab nix pascal perl php
96+
# php_phpactor powershell python python_jedi r
97+
# rego ruby ruby_solargraph rust scala
98+
# swift terraform toml typescript typescript_vts
99+
# vue yaml zig
100+
# (This list may be outdated. For the current list, see values of Language enum here:
101+
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
102+
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
103+
# Note:
104+
# - For C, use cpp
105+
# - For JavaScript, use typescript
106+
# - For Free Pascal/Lazarus, use pascal
107+
# Special requirements:
108+
# Some languages require additional setup/installations.
109+
# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers
110+
# When using multiple languages, the first language server that supports a given file will be used for that file.
111+
# The first language is the default language and the respective language server will be used as a fallback.
112+
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
113+
languages:
114+
- python

cache/image-generation/generation_cache.json

Lines changed: 414 additions & 0 deletions
Large diffs are not rendered by default.

content/zh/ai_operator.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ categories: ["ai_tools"]
77
description: "计算机使用代理"
88
wordCount: 1872
99
readingTime: 5
10+
11+
ai_cover: "/images/generated-covers/e3aff9406869aeab6760a64c497c53ee.webp"
12+
cover:
13+
image: "/images/generated-covers/e3aff9406869aeab6760a64c497c53ee.webp"
14+
alt: "计算机使用代理"
15+
ai_generated: true
1016
---
1117

1218
# 各种操作电脑的AI代理

content/zh/ai_programming/coding_youtube.md

Lines changed: 158 additions & 0 deletions
Large diffs are not rendered by default.

content/zh/ai_programming/github_copilot_smarter_with_fewertools.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ categories: ["ai_programming"]
77
description: "deep dive into LLMs like ChatGPT相关资源链接"
88
wordCount: 1051
99
readingTime: 3
10+
11+
ai_cover: "/images/generated-covers/3348a86477d530dfd46ef5d7e68b5718.webp"
12+
cover:
13+
image: "/images/generated-covers/3348a86477d530dfd46ef5d7e68b5718.webp"
14+
alt: "GitHub Copilot 优化工具数量,如何保证大模型推理效率和准确性?"
15+
ai_generated: true
1016
---
1117

1218
这篇来自 GitHub 官方技术团队的[文章](https://github.blog/ai-and-ml/github-copilot/how-were-making-github-copilot-smarter-with-fewer-tools/)非常有“干货”,它直击了当前 Agent 开发中的一个核心痛点:**当工具(Tools)数量爆炸时,如何保证大模型的推理效率和准确性?**

content/zh/ai_programming/vibe_coding.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ categories: ["ai_programming"]
66
description: "Vibe Coding(氛围编程)是2025年备受关注的一种编程新范式,其核心是开发者通过自然语言与AI协作,将关注点从语法细节转向意图表达。"
77
wordCount: 736
88
readingTime: 2
9+
10+
ai_cover: "/images/generated-covers/6d7e909fd00918dcb2234748d64ecd02.webp"
11+
cover:
12+
image: "/images/generated-covers/6d7e909fd00918dcb2234748d64ecd02.webp"
13+
alt: "何为Vibe Coding"
14+
ai_generated: true
915
---
1016

1117
Vibe Coding(氛围编程)是2025年备受关注的一种编程新范式,其核心是开发者通过自然语言与AI协作,将关注点从语法细节转向意图表达。下面这个表格能帮你快速把握其核心脉络。

content/zh/ai_programming/yc_vibecoding_guide.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ categories: ["ai_programming"]
66
description: 来自YC的Vibe Coding 的最佳实践
77
wordCount: 1652
88
readingTime: 5
9+
10+
ai_cover: "/images/generated-covers/f0626fcd39dd9979480b9e383b97eea8.webp"
11+
cover:
12+
image: "/images/generated-covers/f0626fcd39dd9979480b9e383b97eea8.webp"
13+
alt: "来自YC的Vibe Coding 的最佳实践"
14+
ai_generated: true
915
---
1016

1117

content/zh/ai_spec/aaif.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ categories: ["ai_spec"]
77
description: "Agentic AI Foundation (AAIF) 是在Linux Foundation托管下成立的一个新型开放治理倡议,旨在推动代理人工智能(Agentic AI)生态系统的透明、互操作和可互换发展。AAIF于2025年12月9日正式宣布成立,由Anthropic、Block和OpenAI三家科技巨头共同创立,代表了AI产业向生产级代理系统转变的关键里程碑。后发的竞争对手(如中国的AI公司)如果想融入全球生态,必须兼容这些标准,从而陷入跟随者的被动局面。"
88
wordCount: 3417
99
readingTime: 9
10+
11+
ai_cover: "/images/generated-covers/89d31de417e1e5b5f53e7e64c5f56ea5.webp"
12+
cover:
13+
image: "/images/generated-covers/89d31de417e1e5b5f53e7e64c5f56ea5.webp"
14+
alt: "Agentic AI Foundation (AAIF) 深度介绍"
15+
ai_generated: true
1016
---
1117

1218
## 概述

content/zh/celebrity_insights/anthropic-ceo-dario-Adolescence-of-Technology.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ categories: ["celebrity_insights"]
77
description: "Dario Amodei(The Adolescence of Technology),系统阐述强大AI对人类社会的深远影响,既肯定其变革潜力,也重点警示未妥善管控的风险,引发全球广泛关注。"
88
wordCount: 1644
99
readingTime: 5
10+
11+
ai_cover: "/images/generated-covers/5c5c3b83181ca4ab37d00e3ec3fff2da.webp"
12+
cover:
13+
image: "/images/generated-covers/5c5c3b83181ca4ab37d00e3ec3fff2da.webp"
14+
alt: "Anthropic CEO Dario Amodei博客-《技术的青春期》"
15+
ai_generated: true
1016
---
1117

1218
Anthropic掌门人、首席执行官达里奥·阿莫迪(Dario Amodei)2026年1月27日在个人博客发布两万字长文《技术的青春期》(The Adolescence of Technology),系统阐述强大AI对人类社会的深远影响,既肯定其变革潜力,也重点警示未妥善管控的风险,引发全球广泛关注。

content/zh/celebrity_insights/dankoe_changelifeinoneday.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ categories: ["celebrity_insights"]
66
description: "Dan Koe阐述了通过重塑身份来实现人生转变的核心逻辑,强调真正的改变并非源于行为的被迫调整,而是源于内在自我的根本重新定义。"
77
wordCount: 6288
88
readingTime: 16
9+
10+
ai_cover: "/images/generated-covers/b68be2480f90ec1fcc01dce8e7b8b96c.webp"
11+
cover:
12+
image: "/images/generated-covers/b68be2480f90ec1fcc01dce8e7b8b96c.webp"
13+
alt: "Dan Koe: 如何在一天内彻底改变你的人生"
14+
ai_generated: true
915
---
1016

1117

0 commit comments

Comments
 (0)