T
traeai
Sign in

人物

什么是 Viking

也叫:vikingmute

技术博主,Velopack的发现者与推荐者。

为什么现在值得关注?

📰 Viking 最新动态

已收录 21 篇与「Viking」相关的 AI 资讯和分析。

开源一个我最近 Review AI Code 流程的 skills, review-forge https://t.co/lDHbd5Y9Je

我现在越来越发现 Review 的重要性,因为 AI ...

Open-Sourcing My Recent AI Code Review Workflow: review-forge

Viking(@vikingmute)620 字 (约 3 分钟)
87

The author open-sourced the review-forge toolchain, which controls AI-generated code drift via multi-model cross-review, consensus synthesis, human-driven prioritization, and AI-based fix-verify loops.

入选理由:review-forge 使用 GPT-4.5、Compose2.5 和 DeepSeek-V4-Pro 三模型并行生成 bug 报告,实现盲区互补与交叉验证。

FeaturedTweet#AI Programming#Code Review#Multi-Model Collaboration#review-forge#DevOps中文
很棒的文章啊 启动 Agent 很容易,但是人的注意力是单线程的,无法并行化,而且能处理的上下文很有限,切换上下文困难,所有 Agent 最终的判断/合并代码,都要通过你这个废柴处理器。所以启动的 a...

The Orchestration Tax

Viking(@vikingmute)554 字 (约 3 分钟)
85

Starting more AI agents is easy, but it increases the Orchestration Tax, which requires more judgment and code merging through the human processor, leading to higher costs. It is recommended to run only 1-2 tasks at a time, focus, and optimize the process.

入选理由:启动更多AI代理会增加编排税

FeaturedTweet#AI#Orchestration Tax#Cognitive Bandwidth中文
由于文字不太直观,我让 AI 做了一个页面用真实的动画来展示一下这些动画的具体效果,使用 gasp 来实现:
https://t.co/QIlXXOdKrP
觉得效果不错,比文字直观多了,当然有一些肯...

A visual animation glossary page was created using the AI tool gasp to intuitively showcase animation effects, helping developers better understand and describe animations, thus improving design and development efficiency.

入选理由:通过 gasp 实现的动画词汇表可直观展示动画效果,比纯文字描述更高效。

FeaturedTweet#Animation#gasp#AI#Frontend Development#Visualization中文
写了一篇干货新文章:《我是怎样使用 AI 来做 Code Review 的?》

https://t.co/SOAwhs2jz8

将我之前总结的 AI Code Review 做一个总结,并且更详细...

How I Use AI for Code Review

Viking(@vikingmute)428 字 (约 2 分钟)
75

Viking summarizes his practical AI-assisted code review framework—'Review Forge'—highlighting that unchecked AI code generation risks system instability and quality degradation; the workflow uses staged human-AI collaboration to boost confidence in each change.

入选理由:作者提出‘Review Forge’流程,用于规范AI生成代码的审查方式,防止系统因AI过度输出而失控。

FeaturedTweet#AI Code Review#Review Forge#DevOps#LLM中文
Based on yesterday’s Chinese version, I just wrote the English one too.

Just dropped a new practica...

How I Use AI for Code Reviews: A Practical Workflow

Viking(@vikingmute)284 字 (约 2 分钟)
75

Viking shares his self-developed 'Review Forge' process, transforming AI code review from ad-hoc output into a structured three-phase workflow—significantly boosting change confidence and quality control.

入选理由:提出‘Review Forge’流程,将AI代码审查从随机输出转变为结构化、可重复的三阶段工作流(Prompt → Review → Refine)

FeaturedTweet#AI Code Review#DevOps#Code Quality#Prompt Engineering中英混合
今天又看了 issue 发现一个攻击者偷偷留下的狠招,可以称之为死亡开关,恶意 payload 在受害者机器上安装了一个名为 gh-token-monitor  的脚本,它每 60 秒轮询 Githu...

The article reveals a malicious software attack method known as a 'kill switch', where attackers install the gh-token-monitor script on the victim's machine, use the stolen GitHub token to periodically check its status, and once the token is revoked, it triggers the deletion of the user's local files.

入选理由:攻击者利用 gh-token-monitor 脚本每 60 秒轮询 GitHub API,检查被盗 token 的状态。

FeaturedTweet#Cybersecurity#GitHub#Malware#Security Vulnerability#Developer Security中文
这几天再研究桌面软件的自动更新,发现了这个 Velopack:https://t.co/GlDLpTeqQt
专攻桌面应用的打包分发和更新,非常有趣,跨平台,Rust 编写速度很快,支持 C#、C++...

Researching Desktop Auto-Updates: Discovering Velopack

Viking(@vikingmute)342 字 (约 2 分钟)
72

Velopack is a Rust-based cross-platform auto-update framework for desktop apps supporting C#, C++, JS, Electron, and Tauri, utilizing Delta patches to download only changed binaries for faster updates.

入选理由:Velopack采用Rust编写核心引擎,提供统一的跨平台自动更新API,兼容C#、C++、Rust和JavaScript。

FeaturedTweet#Velopack#Desktop Update#Rust#Electron#Tauri中文
最近发现这个 Herdr 不错啊,https://t.co/NYxNKipTSe

之前用的都是类似 Superset 和 Conductor,但是 GUI 太重了,有时候想要轻量级的,Herdr 直...

Just Found Herdr—It’s Pretty Good

Viking(@vikingmute)359 字 (约 2 分钟)
72

Herdr is a lightweight, Rust-based terminal-native multi-Agent management tool supporting tmux-level persistence, Agent state awareness, and parallel execution—no GUI required, config-inherited, ideal for resource-constrained environments.

入选理由:Herdr 为 Rust 编写的单二进制 CLI 工具,无 GUI 依赖,启动快、内存占用低。

FeaturedTweet#Rust#CLI#TUI#Agent#DevOps中文
针对最近的各种攻击,我一直在用 pnpm 的
minimumReleaseAge=10080 (分钟) 或者 npm 的
min-release-age=7 (天,v11.10+)或者 bun 的
m...

Viking recommends using the package version cooling mechanism provided by pnpm, npm, or bun to defend against npm supply chain attacks, ensuring that newly released packages must cool down for a certain period before being installed, thus avoiding attack windows.

入选理由:pnpm、npm 和 bun 提供了包版本冷却机制,分别设置为 10080 分钟、7 天和 604800 秒。

FeaturedTweet#npm#supply chain attack#security#package manager中文
TinyShip https://t.co/o0BI6W8DRb 新版本的正式发布:支付方式正式支持 DodoPayments

dodo 是最近很火的支付平台,可以支持个人和公司两种,几乎没有什么门...

TinyShip Launches New Version with DodoPayments Support

Viking(@vikingmute)363 字 (约 2 分钟)
65

TinyShip's new version officially supports DodoPayments, becoming one of the few platforms integrating WeChat Pay, Alipay, Stripe, PayPal, Creem, and DodoPayments via unified API for seamless payment switching.

入选理由:TinyShip 新增支持 DodoPayments,该平台门槛极低,仅需产品站点即可接入,适合个人和公司使用。

FeaturedTweet#TinyShip#DodoPayments#Payment Integration#SaaS#Next.js中文
写好了,开源下自己写的一个文字切换滚动的特效库:Scrambl
https://t.co/wqdK0ynwFW

自己完成的最小化内核,0 依赖,支持多种字符集(十种),支持自定义,同时支持 Vani...

Wrote and Open-Sourced a Text Scramble Scroll Effect Library: Scrambl

Viking(@vikingmute)477 字 (约 2 分钟)
65

Open-source text scramble scroll effect library Scrambl supports multiple frameworks, 0 dependencies, suitable for geek-style website titles.

入选理由:Scrambl 支持 React/Vue/Vanilla.js,0依赖

FeaturedTweet#Frontend#Effect Library#Open Source中文
Viking(@vikingmute) 图标

Who built this amazing website? https://t.co/qM6FJuo28V

Viking(@vikingmute)202 字 (约 1 分钟)
55

Sophon.at is a one-stop AI information tracking platform aggregating papers, models, benchmarks, and leaderboards with online preview and feed subscription.

入选理由:Sophon.at 整合了 AI 论文、最新模型、Benchmark 和排行榜四大核心资源。

FeaturedTweet#AI Tools#Information Aggregation#Paper Search#Sophon中文
真的假的 独立开发者最大的优势就是自由啊 用之前的工资买自由 好不容易不上班了 还当牛马熬夜工作是为啥啊

之前也有个做独立开发的咨询我说用户需求太多或者是有不满怎么办 每天挺闹心 也很累 我说这不是...

The Biggest Advantage of Independent Developers is Freedom

Viking(@vikingmute)567 字 (约 3 分钟)
55

The greatest advantage of independent developers is freedom, but overwork must be avoided. When facing user demands, one can actively close communication channels or reject unreasonable requests. Health should always take priority over work.

入选理由:独立开发者可关闭用户群组/拉黑投诉者以保护工作边界

FeaturedTweet#Independent Developers#Work Management#Health#Freedom中文
Viking(@vikingmute) 图标

Recently, DeepSeek-V4 Pro feels really good—especially because it’s cheap!

Viking(@vikingmute)174 字 (约 1 分钟)
52

DeepSeek-V4 Pro is praised for cost-effectiveness in small tasks like code review and writing, replacing expensive Qwen-Max; current primary model ranking: GPT-5.5 > Claude 4.7 > DeepSeek-V4 Pro.

入选理由:DeepSeek-V4 Pro在小任务(如review、写作)中表现良好且价格显著低于Qwen-Max

FeaturedTweet#DeepSeek#Qwen#LLM Selection#Cost Optimization中英混合
Viking(@vikingmute) 图标

The term 'independent developer' is being replaced by more commercial labels like 'Solo Founder' and 'Super Individual'; AI has not increased their numbers but accelerated personal branding upgrades.

入选理由:独立开发者(Independent Developer)称谓正被‘Solo Founder’和‘超级个体’等商业标签取代。

FeaturedTweet#Independent Developer#Solo Founder#AI Mentor#Personal Branding#One-Person Company中文
TinyShip  https://t.co/o0BI6W8DRb 迎来了一次里程碑的更新,数据库能力升级, 增加 SQLite 与 Cloudflare D1 支持。

这次更新代表着 TinySh...

TinyShip 新增 SQLite 与 Cloudflare D1 支持,宣称实现全栈 Cloudflare 环境适配,但正文缺乏技术细节、架构说明或实测验证。

入选理由:新增 SQLite 和 Cloudflare D1 数据库支持

FeaturedTweet#TinyShip#Cloudflare#D1#SQLite#全栈框架中文
说的真对啊,摘抄两段

“现在有很多公司已经陷入严重的 AI 痴迷状态”

“可以把系统自动化成一台看起来很稳健的灾难机器。局部指标看上去一切正常,但全局却变得越来越难以理解。bug 报告可能下降了,...

Say It True: Copy Two Sentences

Viking(@vikingmute)427 字 (约 2 分钟)
50

The article points out that many companies are currently under heavy AI psychosis, and system automation leads to global understanding decline, increasing risks in the future, with more reliance on black-box systems.

入选理由:当前许多公司陷入AI痴迷,系统自动化导致全局理解下降

FeaturedTweet#AI#Companies#Risks#Black-box Systems中文
又做了一个只为自己爽的 eye candy,做了一个库用来渲染一颗复古 disco 球,多种风格和参数,最近好像 disco 风开始火起来,突然来了灵感。

AI 彻底解放了我有设计想法但是不会实现的...

Developer Viking released a library for rendering vintage disco balls, using AI to assist in implementing design ideas, supporting multiple styles and parameter configurations, though the results are not perfectly polished.

入选理由:Viking开发了disco球渲染库,支持多种风格和参数

FeaturedTweet#disco ball#rendering library#AI-assisted design#frontend development中文
Scrambl https://t.co/wqdK0ynwFW  的首页设计我还是挺满意的,任何一个小工具我都希望它有一个抓人眼球的设计,而不是非常 AI 的设计风格。

我的设计流程是,在 awww...

Viking Shares Design Philosophy for Scrambl

Viking(@vikingmute)461 字 (约 2 分钟)
45

Viking shares his design philosophy and development process for the Scrambl tool, emphasizing authenticity and consistency in design, and introducing the features and use cases of Scrambl.

入选理由:Scrambl 是一个开源的文字切换滚动特效库,支持多种字符集和多行布局。

FeaturedTweet#Design#Frontend#Open Source Project#Scrambl中文

与「Viking」经常一起出现的 AI 术语。

💡 想追踪「Viking」的长期趋势?去 实体雷达 · Viking 查看详细分析和跨材料问答。

AI may generate inaccurate information. Please verify important content.