Skip to content

Instantly share code, notes, and snippets.

View onewesong's full-sized avatar
🎯
Focusing

onewesong

🎯
Focusing
View GitHub Profile
@onewesong
onewesong / nr_changelog.md
Created March 5, 2026 12:23
next-router 更新日志 & 测试清单 (2026-01-27 ~ 2026-03-03)

next-router 更新日志 (2026-01-27 ~ 2026-03-03)

共 100 条 commits


📋 更新清单

🔐 安全

  • HashKey 脱敏,用户 Token API 不再返回 hash_key
@onewesong
onewesong / stars-classification.md
Created March 3, 2026 16:20
GitHub Stars 完整分类 (3043个)

GitHub Stars 分类整理

共 3043 个 stars

🤖 AI Agent & CLI (590 个)

  • 10cl/chatdev
  • 1Panel-dev/1Panel
  • 1Panel-dev/MaxKB
  • 1rgs/claude-code-proxy
@onewesong
onewesong / stars-classification.md
Created March 3, 2026 16:16
GitHub Stars 分类整理 (含 Self-Host 服务)

GitHub Stars 分类整理

共 300 个 stars(已排除 own 项目)

🤖 AI Agent & CLI (121 个)

  • mksglu/claude-context-mode
  • RightNow-AI/openfang
  • PeonPing/peon-ping
  • Wei-Shaw/sub2api
@onewesong
onewesong / stars-classification.md
Last active March 3, 2026 16:05
GitHub Stars 分类整理 (含 Self-Host)

GitHub Stars 分类整理

共 300 个 stars(已排除 own 项目)

🤖 AI Agent & CLI (121 个)

  • mksglu/claude-context-mode
  • RightNow-AI/openfang
  • PeonPing/peon-ping
  • Wei-Shaw/sub2api
@onewesong
onewesong / stars-classification.md
Created March 3, 2026 16:01
GitHub Stars 分类整理

GitHub Stars 分类整理

共 300 个 stars(已排除 own 项目)

🤖 AI Agent & CLI (121 个)

  • mksglu/claude-context-mode
  • RightNow-AI/openfang
  • PeonPing/peon-ping
  • Wei-Shaw/sub2api
# "Think Global, Act Local"的AI时代新解:一场闭门会的深度思考
参加完Linkloud在北京办的这场小范围讨论,我一直在回味嘉宾们反复触及的那个命题——"Think Global, Act Local"。这个被说烂了的口号,在AI和SaaS的交叉点上,突然有了非常具体的、甚至锋利的含义。它不再是一句营销口号,而是生死抉择。
---
## 一、Think Global的本质:找人类共通的"底层代码"
Workstream创始人Max分享做美国蓝领招聘时,说了句很狠的话:"我们在中国、香港、新加坡、硅谷聊了一圈,发现痛点一毛一样。"
@onewesong
onewesong / capabilities.txt
Created March 10, 2025 03:17 — forked from jlia0/agent loop
Manus tools and prompts
# Manus AI Assistant Capabilities
## Overview
I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries.
## General Capabilities
### Information Processing
- Answering questions on diverse topics using available information
- Conducting research through web searches and data analysis
#!/usr/bin/env python3
# coding: utf-8
import cson
def read_file(fp):
with open(fp) as f:
return f.read()
@onewesong
onewesong / web_timing.py
Created March 24, 2022 09:47 — forked from mkaz/web_timing.py
Use Selenium to Measure Web Timing
#!/usr/bin/env python
"""
Use Selenium to Measure Web Timing
Performance Timing Events flow
navigationStart -> redirectStart -> redirectEnd -> fetchStart -> domainLookupStart -> domainLookupEnd
-> connectStart -> connectEnd -> requestStart -> responseStart -> responseEnd
-> domLoading -> domInteractive -> domContentLoaded -> domComplete -> loadEventStart -> loadEventEnd
@onewesong
onewesong / asyncio.py
Created March 26, 2021 03:13 — forked from FBosler/asyncio.py
ThreadPool
from datetime import datetime
import aiohttp
import asyncio
URL = "https://medium.fabianbosler.de/run"
async def sample_asyncio(samples):
start = datetime.now()