最近帖子
标签筛选 #github · 共 96 条
eSIM Tools - 专为 giffgaff 和 simyo 用户设计的现代化 eSIM 管理工具集,支持完整的 eSIM 申请、激活和二维码生成流程。 https://github.com/Silentely/eSIM-Tools #GitHub#Tool#Network
免费 LLM API #AI#Free#GitHub https://github.com/mnfst/awesome-free-llm-apis
Tegaki - 字体手写动画,笔画生成 在 React、Svelte、Vue、SolidJS、Astro、Web Components 或纯 JS 中渲染漂亮的字体书写动画。 #Design#GitHub https://github.com/KurtGokhan/tegaki https://gkurt.com/tegaki
自托管的 Chrome 同步服务器,书签密码再也不经过 Google https://www.v2ex.com/t/1206460 #GitHub#Chrome#Tool https://github.com/loyalpartner/selfsync
GitHub 的 Stacked PR 功能开始 private preview。 在 https://gh.io/stacksbeta 可申请加入 waitlist。 https://github.github.com/gh-stack/ linksrc: blog.gslin.org/~ #GitHub
Hashtags
阅读代码前运行的几个 Git 命令 https://piechowski.io/post/git-commands-before-reading-code/ # 1. 查看最近一年内修改最多的 20 个文件 git log --format=format: --name-only --since="1 year ago" | sort | uniq -c | sort -nr | head -20 # 2. 按提交次数对项目提交者排名 git shortlog -sn --no-merges # 3. 筛选特定提交信息(漏洞 / 补丁等),列出关联的最多的 20 个文件 git log -i -E --grep="fix|bug|broken" --name-only --format='' | sort | uniq -c | sort -nr | head -20 # 4. 查看代码库历史中每月的提交次数(活跃程度) git log --format='%ad' --date=format:'%Y-%m' | sort | uniq -c # 5. 查看最近一年内代码回滚和热修复的频次 git log --oneline --since="1 year ago" | grep -iE 'revert|hotfix|emergency|rollback' #GitHub#DevOps#Shell#Doc
在终端里重放 Git 提交历史操作,将 Git 历史记录转为动画。 https://github.com/unhappychoice/gitlogue #GitHub#Tool#Shell
用 Claude Code 将三万行 Go 项目移植到 Rust:Agent Team 实践与 Harness 效率优化 https://maxlv.net/blog/porting-mihomo-to-rust-with-claude https://github.com/madeye/mihomo-rust #Clash#Network#Tool#GitHub
apfel 通过 Apple FoundationModels 框架,实现了命令行接口(CLI)、HTTP API 来调用 Apple Silicon 芯片的 Mac 设备上附带的本地 LLM,完全本地处理,无需 API Key。 #macOS#Apple#AI#Tool#GitHub https://github.com/Arthur-Ficial/apfel
GitHub Gists 美化查看:只需将任意 GitHub Gists 的 URL 中的 gist.github.com 替换为 gists.sh 即可 https://gists.sh/ #GitHub https://github.com/linuz90/gists.sh
Hashtags
pi 的设计艺术:构建生产级 Coding Agent 的架构决策 https://zhanghandong.github.io/pi-book/ https://github.com/ZhangHanDong/pi-book #AI#Doc#GitHub
NeriPlayer - 原生 Android 多源音频播放器 https://github.com/cwuom/NeriPlayer NeriPlayer 是一个基于 Jetpack Compose + Media3 的原生 #Android 音频播放器。 整合网易云音乐、Bilibili 与 YouTube Music 的在线内容,并提供流媒体缓存、应用内下载、本地导入、本地歌单管理、 可选 GitHub 私有仓库同步等能力。 #Music#Tool#GitHub