Skip to content

Archives

All the articles I've archived.

2025 3
October 1
June 1
  • GUI Agent Implementation Based on UI-TARS

    Published:  at  16:00
    # AI # Agent # GUI

    Based on the UI-TARS multimodal vision model, combined with MCP (Model Context Protocol), this builds a next-generation cross-platform, autonomously perceptive GUI Agent system. This is intended as a starting point for discussion with everyone on the technologies, scenarios, and future of GUI Agents! For the UI-TARS project, see http:/...

March 1
  • AI Agent Application Development Practice Based on MCP

    Published:  at  16:00
    # AI # Agent # MCP

    Subtitle: "MCP Brings a New Paradigm for Layered Development of Applications and Tools" Preface: Everyone has been talking about MCP lately, and I’ve noticed that one of the most important points has been overlooked: “decoupling tool providers from application developers through a standardized protocol.” This will lead to a shift in the development paradigm for AI Agent applications (similar to the Web ...

2024 1
January 1
2023 2
September 1
  • Code Review Practice Based on Large Models + Knowledge Bases

    Published:  at  16:00
    # AI # LLM # DevOps

    A modest attempt to spark discussion. The author’s understanding of large language models (LLMs) is limited, so please feel free to point out anything inappropriate! 💡The idea came from asking Claude during a Code Review which coding style was more elegant. At the time, I wondered whether AI could help us with Code Review. * Information Security...

May 1
  • Using ChatGPT to Customize a Team-Specific ESLint Ruleset

    Published:  at  16:00
    # AI # Tools # ESLint

    This article is primarily for frontend and Node.js development teams. It explains how to more efficiently turn code review experience into an ESLint ruleset to raise the baseline quality of team development. Topics covered include: 1. How to write: using ChatGPT to generate ESLint rules and validate them through snapsho...

2022 2
August 1
  • 📝 New MacBook Pro Setup Notes

    Published:  at  16:00
    # Tools # macOS

    My MBP (2020 13″ 32G 512G) had become unbearably laggy—how bad was it? There was a 2~3s delay between typing on the keyboard and seeing the output in the editor! My first Mac (MBP 2015 13″ 8G + 128G) handled development as well as security research (Web ...

January 1
  • Optimizing zsh Cold-Start Performance (Oh My Zsh)

    Published:  at  16:00
    # Tools # zsh

    One time when I opened Terminal, the commands I casually typed wouldn’t appear on screen, and I had to wait nearly 10 seconds before I could interact with the terminal. It was time to optimize the shell cold start! ❯ for i in $(seq 1 10); do /usr/bin/time $SHELL -i -...

2021 1
October 1
  • Module Package Design Practices in a Monorepo

    Published:  at  16:00
    # Frontend # Monorepo # Node.js

    Module Package Design Practices in a Monorepo. This article is mainly for frontend and Node.js developers who use a Monorepo to organize applications and modules in their business. It offers a starting point for discussing: 1. How to design a shared configuration package (configs, types, utils, enums, etc.) that can...