mirror of
https://github.com/1c7/chinese-independent-developer.git
synced 2026-04-14 22:34:26 +08:00
Compare commits
70 Commits
batch-add-
...
batch-add-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4563632bb5 | ||
|
|
07c4b4cf40 | ||
|
|
27c50827a3 | ||
|
|
ebf138c1db | ||
|
|
93218feb9a | ||
|
|
d39cbff3ec | ||
|
|
72a9b01c78 | ||
|
|
4037eaeb08 | ||
|
|
6bd0d2048e | ||
|
|
41d6f0b914 | ||
|
|
859d89b035 | ||
|
|
fd3730d7d4 | ||
|
|
19e3406fa8 | ||
|
|
d5e963c02b | ||
|
|
3a05cd513c | ||
|
|
ed8900e478 | ||
|
|
a5bf541707 | ||
|
|
f9dfdea2de | ||
|
|
ef6e6c8893 | ||
|
|
4872c6cdf6 | ||
|
|
8b364f4fad | ||
|
|
1699fa6c3a | ||
|
|
1b7a6a3a53 | ||
|
|
6cc68d7632 | ||
|
|
2ff93868e5 | ||
|
|
f165a8538b | ||
|
|
206682263d | ||
|
|
ca71952817 | ||
|
|
6dea544951 | ||
|
|
f7d4321da4 | ||
|
|
c88f3f54af | ||
|
|
4db9e71c0d | ||
|
|
8103f29e67 | ||
|
|
f1258a3df3 | ||
|
|
af17e50c77 | ||
|
|
e82409e381 | ||
|
|
cd7f94e402 | ||
|
|
280f7764d4 | ||
|
|
21a5a2c5ec | ||
|
|
68c939c41e | ||
|
|
dfab740b50 | ||
|
|
e197faf5d0 | ||
|
|
467eb7d3de | ||
|
|
b4c59ea03d | ||
|
|
80da71567f | ||
|
|
17c16ab2e7 | ||
|
|
e6a45de2f4 | ||
|
|
13ae3a90aa | ||
|
|
bb2aadb2a8 | ||
|
|
ea4fe12179 | ||
|
|
cae1ef320d | ||
|
|
c4e1560d42 | ||
|
|
1f5a75f7f1 | ||
|
|
dbf60e52e2 | ||
|
|
c7d285af4a | ||
|
|
c2db13999c | ||
|
|
6ab86e78b4 | ||
|
|
ac1c73522b | ||
|
|
c9f2786a17 | ||
|
|
6ca971e34d | ||
|
|
4ec40ead7c | ||
|
|
583ca06a95 | ||
|
|
32c94d91fc | ||
|
|
3162434372 | ||
|
|
cff1058553 | ||
|
|
ed4c1a1f73 | ||
|
|
6f628d4a91 | ||
|
|
073b02eacb | ||
|
|
ed06614d86 | ||
|
|
40fe04dcd9 |
22
.gitignore
vendored
22
.gitignore
vendored
@@ -1 +1,21 @@
|
||||
.env
|
||||
# 环境变量
|
||||
.env
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
|
||||
# 虚拟环境
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
57
CONTRIBUTING.md
Normal file
57
CONTRIBUTING.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# 如何提交项目
|
||||
|
||||
## 格式模板
|
||||
|
||||
```
|
||||
#### 制作者名字(城市名) - [Github](), [博客]()
|
||||
* :white_check_mark: [产品名称](网址):简短的介绍,尽量把事情说清楚 - [更多介绍]()
|
||||
```
|
||||
|
||||
城市名、Github、博客、更多介绍均为可选项。
|
||||
|
||||
## 格式模板 - 最精简的版本(只保留必填项)
|
||||
|
||||
```
|
||||
#### 制作者名字
|
||||
* :white_check_mark: [产品名称](网址):简短的介绍,尽量把事情说清楚
|
||||
```
|
||||
|
||||
## 填写示例
|
||||
|
||||
```
|
||||
#### 张三(上海) - [Github](https://github.com/zhangsan)
|
||||
* :white_check_mark: [VoiceClone](https://voiceclone.com):AI 语音克隆工具,3 秒克隆任何声音,支持中英日韩等 10 种语言
|
||||
```
|
||||
|
||||
```
|
||||
#### 李四 - [Github](https://github.com/lisi)
|
||||
* :white_check_mark: [MarkdownToWord](https://markdowntoword.com):Markdown 转 Word/PDF 工具,支持 LaTeX 公式和 Mermaid 图表,浏览器本地处理无需注册
|
||||
```
|
||||
|
||||
```
|
||||
#### 王五(深圳) - [Github](https://github.com/wangwu), [博客](https://wangwu.com)
|
||||
* :white_check_mark: [BookmarkPro](https://bookmarkpro.com):Chrome 书签管理插件,替代默认新标签页,支持文件夹卡片视图和拖拽排序 - [更多介绍](https://bookmarkpro.com/features)
|
||||
```
|
||||
|
||||
## 如何写好一句话介绍
|
||||
|
||||
**先定性,再加分**:开头先用最短的词说清楚产品是什么,然后说让你与众不同的地方。
|
||||
|
||||
```
|
||||
[产品类型],[核心价值或独特之处]
|
||||
```
|
||||
|
||||
以下是来自本列表的真实优秀例子,供参考:
|
||||
|
||||
- `AI 语音克隆工具,3 秒克隆任何声音,支持中英日韩等 10 种语言,提供 50+ 预设声音库`
|
||||
- `图片压缩工具,70%+ 压缩率同时保持画质,支持 PNG/JPEG/WebP 批量处理,纯本地运行不上传`
|
||||
- `Chrome 书签管理插件,替代默认新标签页,支持文件夹卡片视图、拖拽排序和批量操作`
|
||||
- `Markdown 转 Word/PDF 工具,支持 LaTeX 公式和 Mermaid 图表,浏览器本地处理无需注册`
|
||||
- `AI 数据工作台,支持 MySQL/Postgres/SQLite/Clickhouse,可替代 DBeaver 和 Navicat`
|
||||
- `Mac 菜单栏速记工具,全局悬浮不切屏,支持图文混排和一键调出剪贴板历史`
|
||||
- `AI Agent 安全沙箱,一条命令让 Claude Code、Codex 等 Agent 在完全隔离容器中运行,宿主机零风险`
|
||||
- `多人聚会地点推荐工具,输入多人地址自动计算公平中点,覆盖 350+ 城市,免费无需注册`
|
||||
- `多语言听力练习 App,支持导入 Podcast 和 YouTube 链接,提供双语字幕和跟读练习`
|
||||
- `极简表达平台,无账号、无互动、不留痕迹,适合"说出来就放下"的轻量表达需求`
|
||||
|
||||
没有独特之处时,加具体数字或使用限制(免费、无需注册、本地处理)也能让介绍语更有价值。
|
||||
@@ -16,6 +16,16 @@ Issue 和 PR 里偶尔有人提交一些不错的东西,但打开一看,不
|
||||
程序员版开始于 2019 年 4 月 11 号, 主版面开始于 2018 年 3 月
|
||||
-->
|
||||
|
||||
### 2026 年 4 月 10 号添加
|
||||
|
||||
#### nowork-studio - [Github](https://github.com/nowork-studio)
|
||||
* :white_check_mark: [toprank](https://github.com/nowork-studio/toprank):开源(MIT)的 Claude Code 插件,提供 9 个 SEO 和 Google Ads 技能。连接 Google Search Console、PageSpeed Insights、Google Ads API,自动重写 meta 标签、生成 JSON-LD 结构化数据,并将修改直接推送到 WordPress/Strapi/Contentful/Ghost。107 stars
|
||||
|
||||
### 2026 年 4 月 8 号添加
|
||||
|
||||
#### SunflowersLwtech - [Github](https://github.com/SunflowersLwtech)
|
||||
* :white_check_mark: [polanyi-design](https://github.com/SunflowersLwtech/polanyi-design):基于 Michael Polanyi 默会知识理论的前端设计认知引擎 Claude Code Skill,让 AI 生成有审美判断力的 UI 设计而非模板化输出 - [更多介绍](https://sunflowerslwtech.github.io/polanyi-design/showcase/)
|
||||
|
||||
### 2026 年 3 月 30 号添加
|
||||
|
||||
#### yanglian(珠海) - [Github](https://github.com/lian-yang)
|
||||
|
||||
194
README.md
194
README.md
@@ -12,6 +12,9 @@
|
||||
所以特意建了这个库。欢迎各位开发者把自己的项目加进来~ 发 Pull Request 或 Issue 即可 <br/>
|
||||
(入选标准:必须是网站或App,不能是开发者工具或论坛型网站)
|
||||
|
||||
**写好介绍语很重要**:❌ `AI 视频生成工具` → ✅ `无需剪辑经验,3 步生成竖屏短视频`<br/>
|
||||
👉 [如何写好一句话产品介绍](./CONTRIBUTING.md)
|
||||
|
||||
**2. 项目有 3 种状态**
|
||||
|
||||
| 开发中 | 已上线 | 已关闭或缺乏维护 |
|
||||
@@ -20,8 +23,194 @@
|
||||
|
||||
## 3. 项目列表
|
||||
|
||||
### 2026 年 4 月 14 号添加
|
||||
|
||||
#### 河池 - [Github](https://github.com/superbogy), [博客](https://docs.egosapp.com/blog)
|
||||
* :white_check_mark: [egos](https://egosapp.com):零配置mini-NAS,个人设备文件传输和分享
|
||||
|
||||
#### anyfly8 - [Github](https://github.com/anyfly8)
|
||||
* :white_check_mark: [热点智读](https://ainsight.aiext.co):不止看热点,更是懂逻辑;2分钟,看趋势,见未来
|
||||
|
||||
#### zhaomario1 - [Github](https://github.com/zhaomario1)
|
||||
* :white_check_mark: [Qwen Image](https://imagebyqwen.com/):AI 图像生成
|
||||
|
||||
### 2026 年 4 月 13 号添加
|
||||
|
||||
#### dong2019 - [Github](https://github.com/dong2019)
|
||||
* :white_check_mark: [thesis_paper](https://github.com/dong2019/thesis_paper):学位论文审查工具,调用大模型审查语言、参考文献、图表等问题
|
||||
|
||||
### 2026 年 4 月 12 号添加
|
||||
|
||||
#### jankarong - [Github](https://github.com/jankarong)
|
||||
* :white_check_mark: [Before After Photo Maker](https://beforeafterphotomaker.site/):在线前后对比图、视频、GIF动图制作,支持多种对比布局(并排展示、交互式滑块对比、分割视图、垂直堆叠)
|
||||
|
||||
#### garfi99 - [Github](https://github.com/garfi99)
|
||||
* :white_check_mark: [有名](https://nomai.data-ext.com):用 AI 取好名字的网站,找到独特、易于品牌化的名称
|
||||
|
||||
#### kerryhank - [Github](https://github.com/kerryhank)
|
||||
* :white_check_mark: [KK Investing](https://kkinvesting.io):多语言加密货币教育平台,提供交易所注册教程、加密卡评测、DeFi 借贷指南
|
||||
|
||||
#### bytevirts - [Github](https://github.com/bytevirts)
|
||||
* :white_check_mark: [toolsclaw.com](https://toolsclaw.com):AI 工具目录,精选 AI 图像生成、视频创作、效率应用和 SaaS 解决方案
|
||||
|
||||
#### vorojar - [Github](https://github.com/vorojar)
|
||||
* :white_check_mark: [MD Preview](https://github.com/vorojar/md-preview):Rust 写的超轻量 Markdown 预览工具,替代 Electron 方案
|
||||
|
||||
### 2026 年 4 月 11 号添加
|
||||
|
||||
#### simple-Jian-tw - [Github](https://github.com/simple-Jian-tw)
|
||||
* :white_check_mark: [AnimeGen](https://animegen.ai):将照片转换为动漫艺术、头像和风格化插图的 AI 工具
|
||||
|
||||
#### lisa - [Github](https://github.com/shisan12323)
|
||||
* :white_check_mark: [HappyHorse](https://www.happyhorse20.com/):AI 视频生成,支持文生视频、图生视频
|
||||
|
||||
### 2026 年 4 月 10 号添加
|
||||
|
||||
#### 韩数 - [Github](https://github.com/hanshuaikang)
|
||||
* :white_check_mark: [哪吒](https://github.com/hanshuaikang/nezha):专为多项目并行 VibeCoding 打造的轻量级 AI 编程工具,集成了 Claude Code 和 Codex,整合了多项目管理、待办系统、会话管理、虚拟终端、代码编辑器和 Git
|
||||
|
||||
#### 刀刀 - [Github](https://github.com/sfss5362)
|
||||
* :white_check_mark: [Tabs LOCALLY](https://chromewebstore.google.com/detail/tabs-locally/ioemhkdlhmppnbjclglpfhdblbbhikdd):替代 Chrome 新标签页的书签管理器,支持文件夹卡片视图、拖拽排序、多选批量操作和搜索高亮
|
||||
|
||||
#### Hugh (杭州)
|
||||
* :white_check_mark: [SBTI Test](https://sbtitest.me/):31 道题的纯前端性格测试,隐私无上传与当代“精神状态”诊断。
|
||||
|
||||
#### ckfanzhe - [Github](https://github.com/ckfanzhe)
|
||||
* :white_check_mark: [QuickInfer](https://ckfanzhe.github.io/quickinfer/):基于 ONNX Runtime Web 的 YOLOv8 推理,纯 Web 端运行,无需其他环境及后端服务器。
|
||||
|
||||
#### evancole-ai - [Github](https://github.com/evancole-ai)
|
||||
* :white_check_mark: [BeMusic AI](https://bemusic.ai):AI 音乐生成器
|
||||
|
||||
#### PetersLab - [Github](https://github.com/peters-lab), [Twitter](https://x.com/peterandersone)
|
||||
* :white_check_mark: [AI Manga Translator](https://ai-manga-translator.com):上传漫画,获取像素级精准翻译。智能 OCR、忠实翻译、无缝排版。全部由 AI 驱动
|
||||
|
||||
### 2026 年 4 月 9 号添加
|
||||
|
||||
#### cabbagehao - [Github](https://github.com/cabbagehao)
|
||||
* :white_check_mark: [hermes agent helper](https://hermes-agent.us):提供 Hermes Agent 的安装、OpenClaw 对比、Docker、部署等相关教程和服务
|
||||
|
||||
#### yvonuk - [推特](https://x.com/mcwangcn)
|
||||
* :white_check_mark: [Pager.Quest](https://pager.quest):基于电报的消息推送,支持文字、图片、文档推送,无需另装APP
|
||||
|
||||
#### businesszh - [Github](https://github.com/businesszh)
|
||||
* :white_check_mark: [happyhorseai.pro](https://happyhorseai.pro/):AI Video Generator for Text to Video and Image to Video
|
||||
|
||||
### 2026 年 4 月 8 号添加
|
||||
|
||||
#### Zane造物 - [Github](https://github.com/zhushen12580)
|
||||
* :white_check_mark: [StyleSwift(数字女娲)](https://chromewebstore.google.com/detail/styleswift/llchggmimjgnbjlcgpkjmplhfbkjjcli):给任何网站换皮肤
|
||||
|
||||
#### syakadou - [Github](https://github.com/syakadou)
|
||||
* :white_check_mark: [paypalfeecalculator](https://paypalfeecalculator.org/):计算 PayPal 处理费,查看扣除费用后实际收款金额。
|
||||
|
||||
#### mooremok - [Github](https://github.com/mooremok)
|
||||
* :white_check_mark: [回声笔AI](https://llmapi.fit):微调模型,提供降重降AI接口服务
|
||||
|
||||
### 2026 年 4 月 7 号添加
|
||||
|
||||
#### linhuaqian - [Github](https://github.com/linhuaqian)
|
||||
* :white_check_mark: [lovecalculator.vip](https://lovecalculator.vip/):通过名字测试两人是否有缘
|
||||
|
||||
#### Rvelamen - [Github](https://github.com/Rvelamen)
|
||||
* :white_check_mark: [Octopus](https://github.com/Rvelamen/Octopus):AI Agent 桌面框架 · 多触手高效协作
|
||||
|
||||
### 2026 年 4 月 6 号添加
|
||||
|
||||
#### rain(深圳) - [Github](https://github.com/wang1309)
|
||||
* :white_check_mark: [seedance2](https://seedances2.org/):AI 视频生成平台,体验视频生成模型 Seedance
|
||||
|
||||
#### wendy7756 - [Github](https://github.com/wendy7756)
|
||||
* :white_check_mark: [sipsip.ai](https://www.sipsip.ai/):支持30+平台视频AI转录并提取摘要,订阅RSS可以每天发送早报
|
||||
|
||||
#### my19940202(上海) - [Github](https://github.com/my19940202)
|
||||
* :white_check_mark: [banana-PPT](http://ppt.hoduan.com/):Banana PPT 是一款基于 AI 的原生 PPT 生成工具。从想法到演示文稿,只需一句话。 告别繁琐的手动排版,让 AI 帮你完成设计、配图、配色的全部工作。(基于开源项目banana-slides)
|
||||
|
||||
#### Harries - [Github](https://github.com/Harries)
|
||||
* :white_check_mark: [yizhan.club](https://www.yizhan.club/):发现、比较和推荐最新 AI 工具的平台
|
||||
|
||||
#### WildMildNull
|
||||
* :white_check_mark: [StreamWindow](https://macdev.cn/):MacOS平台一款全新的3D窗口管理工具,支持漂亮、炫酷的CoverFlow封面流转特效,摩天轮效果和扑克牌洗牌特效等,满足高效办公的同时,也增添更多好玩的操作乐趣。
|
||||
* :white_check_mark: [TickTot](https://macdev.cn/ticktot):专为老师、家长和儿童设计的钟表时间辅助学习工具,指针支持配置不同颜色,指针以动画形式,动态直观地呈现时针走一小格,分针走几格,秒针转几圈的规律。
|
||||
|
||||
#### calderbuild - [Github](https://github.com/calderbuild)
|
||||
* :white_check_mark: [MeetSpot 聚点](https://meetspot-irq2.onrender.com/):多人聚会地点智能推荐工具,输入 2-10 人地址,用球面几何算法计算公平中点,AI 评分推荐附近高评分场所,覆盖 350+ 城市,免费使用无需注册。
|
||||
|
||||
#### MattCraftsCode - [Github](https://github.com/MattCraftsCode)
|
||||
* :white_check_mark: [AI Amazing](https://aiamazing.art):AI 图像/视频生产平台,面向创作者与团队
|
||||
|
||||
### 2026 年 4 月 5 号添加
|
||||
|
||||
#### AprDeci - [Github](https://github.com/AprDeci)
|
||||
* :white_check_mark: [bili-music](https://github.com/AprDeci/bili-music):音乐App,基于 bilibili 音源
|
||||
|
||||
#### 1996fanrui - [Github](https://github.com/1996fanrui)
|
||||
* :white_check_mark: [Agents Sandbox](https://agents-sandbox.com):AI Agent 安全沙箱,一条命令让 Claude Code、Codex、OpenClaw 等 AI Agent 在完全隔离的容器中以无限制权限运行,宿主机零风险。支持 CLI 和 Python SDK
|
||||
|
||||
* :white_check_mark: [Word Counter - 字数统计工具](https://www.primenotepad.com/tools/word-counter):字数统计工具,可实时统计文本的字数、字符数、句子数等信息
|
||||
|
||||
#### Shawn(北京) - [Github](https://github.com/ShawnHacks)
|
||||
* :white_check_mark: [Beautyface AI](https://beautyface.app):AI 图片生成工具,主要定位人像生成,包括职业照、艺术照、风格化、逆向提示词等 - [更多介绍](https://beautyface.app/)
|
||||
* :white_check_mark: [AI Onekit](https://aionekit.com):AI 聚合模型创作平台 - [更多介绍](https://aionekit.com/models)
|
||||
|
||||
### 2026 年 4 月 3 号添加
|
||||
|
||||
#### syakadou - [Github](https://github.com/syakadou)
|
||||
* :white_check_mark: [Gemini Watermark remover](https://gemini-watermark-remover.net/):去除 Gemini App 生成的 AI 图片水印
|
||||
|
||||
#### xiehuateng - [Github](https://github.com/xiehuateng)
|
||||
* :white_check_mark: [x downloader](https://x-video-download.net):解析推特(X)上的 AI 视频及各种视频链接,支持一键下载多种清晰度视频。
|
||||
|
||||
#### jjk340 - [Github](https://github.com/jjk340)
|
||||
* :white_check_mark: [Clarioxis](https://clarioxis.com):AI 教育智能体工具,打造“资料分析+AI视频讲解+随堂练习+智能复盘”的一站式学习闭环
|
||||
|
||||
#### my19940202(上海) - [Github](https://github.com/my19940202)
|
||||
* :white_check_mark: [页面直达](https://chromewebstore.google.com/detail/%E5%85%8D%E8%B7%B3%E7%9B%B4%E8%BE%BE/fpljgabmnoghfieaoehmcjgfelboedda):浏览器插件,可以自动跳过微信安全确认、CSDN/掘金外链页及 X、Facebook、Threads 等中间跳转页,直达对应链接,提升网站访问速度
|
||||
|
||||
### 2026 年 4 月 2 号添加
|
||||
|
||||
#### IanChen
|
||||
* :white_check_mark: [Lyria 3 Pro](https://lyria3pro.pro):基于Google DeepMind Lyria 3 Pro 模型的 AI 音乐生成器,包含人声、歌词和伴奏
|
||||
|
||||
### 2026 年 4 月 1 号添加
|
||||
|
||||
#### kristoff
|
||||
* :white_check_mark: [IndieAI Directory](https://indieai.directory/):收录独立开发者的AI Saas
|
||||
|
||||
#### qqxufo - [Github](https://github.com/qqxufo)
|
||||
* :white_check_mark: [Image To 3D](https://imageto3d.cc/?source=github):将图像转换为 3D 模型
|
||||
|
||||
### 2026 年 3 月 31 号添加
|
||||
|
||||
#### vampirewy - [Github](https://github.com/vampirewy)
|
||||
* :white_check_mark: [AI Family Photo Generator](https://aifamilyphotogenerator.org):在线工具,可从单独的照片创建逼真的家庭照片和全家福。上传家庭成员的个人照片或描述您想要的肖像,该工具将生成可下载、分享、打印或保存的自然家庭图像。
|
||||
|
||||
#### luzedong - [Github](https://github.com/luzedong)
|
||||
* :white_check_mark: [Anycoding](https://github.com/luzedong/anycoding):CLI-First AI 编程工作台,把 Claude Code、Codex、Cursor、Gemini 和 OpenCode等 CLI统一到桌面/Web 界面中,用更少切换完成多会话开发。
|
||||
|
||||
#### jacobmillerv - [Github](https://github.com/jacobmillerv)
|
||||
* :white_check_mark: [Mee Manga Translator](https://mangatranslator.me/):基于 AI 的漫画翻译工具,支持将日漫、韩漫等图片一键翻译成目标语言,并自动保留原有排版与气泡位置,实现自然、可读性高的漫画翻译体验
|
||||
|
||||
#### 士季(上海) - [Github](https://github.com/Albert-Weasker)
|
||||
* :white_check_mark: [DevIntro 2.0](https://www.intent-leads.com):在 72 小时内找到前 1,000 个高意向用户,用真实信号完成冷启动
|
||||
|
||||
#### azt1112 - [Github](https://github.com/azt1112)
|
||||
* :white_check_mark: [Nano Banana 2 Pro](https://nanobananapro2.pro/):专业 AI 图像编辑器,拥有无瑕的文字渲染能力,使用完美的排版、原生4K分辨率和100多种语言支持来编辑和增强图像
|
||||
|
||||
#### daipeng - [Github](https://github.com/daipeng)
|
||||
* :white_check_mark: [MarkdownToWord.pro](https://markdowntoword.pro):在线 Markdown 转 Word/PDF/HTML 工具,支持 LaTeX 公式、Mermaid 图表、GFM 语法,浏览器本地处理,无需注册
|
||||
* :white_check_mark: [MarkdownConverter.pro](https://markdownconverter.pro):双向 Markdown 文档格式转换工具,支持 Markdown 与 PDF/Word/HTML 互转,内置 LaTeX 渲染和代码高亮,支持批量处理和 API 调用
|
||||
|
||||
### 2026 年 3 月 30 号添加
|
||||
|
||||
#### jeffreys-cat - [Github](https://github.com/jeffreys-cat)
|
||||
* :white_check_mark: [Dory](https://github.com/dorylab/dory):现代化、AI 原生的数据工作台,支持 MySQL、Postgres、SQLite、Clickhouse 等,Dbeaver / Navicat 替换
|
||||
|
||||
#### Locke
|
||||
* :white_check_mark: [TesLyr](https://teslyr.com):基于网页的实时同步歌词显示,适用于特斯拉触摸屏,可在驾驶时使用,支持几乎所有音乐源,包括原生 Spotify、Apple Music、Tidal、USB 驱动器和蓝牙音频。
|
||||
|
||||
#### businesszh - [Github](https://github.com/businesszh)
|
||||
* :white_check_mark: [UNI-1](https://uni-1.org/):Luma AI 的统一推理与视觉想象模型,从一个逻辑大脑中生长出“心灵之眼”
|
||||
|
||||
#### Windyan(深圳)-[Github](https://github.com/windyan233)
|
||||
* :white_check_mark: [ThumbnailMaker](https://thumbnail-maker.com):帮助视频创作者生成高点击率的封面图
|
||||
|
||||
@@ -475,6 +664,9 @@
|
||||
#### Poiybro
|
||||
* :white_check_mark: [OSINT Tools](http://osinttools.me/):The comprehensive OSINT tools list for professionals. Explore our directory of best free resources for email OSINT, technical research, and data analysis. - [More](https://osinttools.me/about)
|
||||
|
||||
#### ventupx
|
||||
* :white_check_mark: [upx-cli](https://github.com/ventupx/upx-cli):通过 cli 生成 AI Coding 通用规则。
|
||||
|
||||
|
||||
### 2026 年 1 月 26 号添加
|
||||
|
||||
@@ -823,7 +1015,7 @@
|
||||
* :white_check_mark: [OneClip](https://oneclip.cloud/):剪贴板管理工具(专为 macOS 设计),支持多种格式内容管理,智能搜索和分类,让您的复制粘贴操作更加便捷高效 - [更多介绍](https://wcowin.work/blog/OneClip/)
|
||||
|
||||
#### Shawn(北京) - [Github](https://github.com/ShawnHacks)
|
||||
* :x: [Screentell](https://screentell.com):录屏工具(低门槛),可以满足 90 %以上的录屏 DEMO 需求,特色支持手绘风格贴纸 - [更多介绍](https://x.com/ShawnHacks/status/1996480396637446197)
|
||||
* :white_check_mark: [Screentell](https://screentell.com):录屏工具(低门槛),可以满足 90 %以上的录屏 DEMO 需求,特色支持手绘风格贴纸 - [更多介绍](https://x.com/ShawnHacks/status/1996480396637446197)
|
||||
|
||||
#### biboom(广州)
|
||||
* :white_check_mark: [YouTube 字幕生成器](https://transcriptinprogress.online):将 Youtube 视频转为文字
|
||||
|
||||
Reference in New Issue
Block a user