开源项目
🔥 fishjar / kiss-translator - A simple, open source bilingual translation extension & Grea
GitHub热门项目 | A simple, open source bilingual translation extension & Greasemonkey script (一个简约、开源的 双语对照翻译扩展 & 油猴脚本) | Stars: 10,827 | 16 stars today | 语言: JavaScript
开源项目
🔥 TryGhost / Ghost - Independent technology for modern publishing, memberships, s
GitHub热门项目 | Independent technology for modern publishing, memberships, subscriptions and newsletters. | Stars: 54,023 | 25 stars today | 语言: JavaScript
开源项目
🔥 public-apis / public-apis - A collective list of free APIs
GitHub热门项目 | A collective list of free APIs | Stars: 442,738 | 408 stars today | 语言: Python
开源项目
🔥 santinic / audiblez - Generate audiobooks from e-books
GitHub热门项目 | Generate audiobooks from e-books | Stars: 7,750 | 151 stars today | 语言: Python
开源项目
🔥 VectifyAI / OpenKB - OpenKB: Open LLM Knowledge Base
GitHub热门项目 | OpenKB: Open LLM Knowledge Base | Stars: 2,349 | 208 stars today | 语言: Python
开源项目
🔥 stanford-oval / storm - An LLM-powered knowledge curation system that researches a t
GitHub热门项目 | An LLM-powered knowledge curation system that researches a topic and generates a full-length report with citations. | Stars: 28,738 | 199 stars today | 语言: Python
开源项目
🔥 K-Dense-AI / scientific-agent-skills - Turn any AI agent into an AI Scientist. The #1 Agent Skills
GitHub热门项目 | Turn any AI agent into an AI Scientist. The #1 Agent Skills library for science, used by 160,000+ scientists worldwide. 140 ready-to-use skills plus 100+ scientific databases covering biology, chemistry, medicine, and drug discovery. Compatible with Cursor, Claude Code, Codex, Pi, Antigravity, and the open Agent Skills standard. | Stars: 28,736 | 174 stars today | 语言: Python
开源项目
🔥 aishwaryanr / awesome-generative-ai-guide - A one stop repository for generative AI research updates, in
GitHub热门项目 | A one stop repository for generative AI research updates, interview resources, notebooks and much more! | Stars: 27,444 | 203 stars today | 语言: HTML
开源项目
🔥 palmier-io / palmier-pro - macOS video editor built for AI
GitHub热门项目 | macOS video editor built for AI | Stars: 1,436 | 749 stars today | 语言: Swift
AI 资讯
Gen Z Singles Are Trying to Make ‘Solomaxxing’ Aspirational
For young people, the trend removes the stigma of being unmarried and alone, and recasts it as something to aim for, not avoid.
AI 资讯
Pump.Fun’s Bounties Platform Is a Black Hole of Circular Grifting
The crypto platform claims you can “pay anyone to do anything,” from quitting a job on camera to getting a memecoin-themed tattoo. But it mostly seems like people trying to scam each other.
AI 资讯
Putting a file in .gitignore does nothing if git already tracks it. I built a CLI to find the leftovers.
You added .env to .gitignore . You felt responsible. But three weeks later it's still in the repo, still pushed to GitHub, still in every clone — because adding a path to .gitignore does nothing to a file git already tracks. That's not a bug. It's documented behavior: .gitignore only stops untracked files from being added. Anything already committed keeps getting tracked, ignore rule or not. So the secrets, build artifacts, and 40 MB log files that were committed before someone wrote the rule just... stay. The fix is one command — git rm --cached — but only once someone notices . And nobody notices, because git status is clean and the file looks ignored. So I built gitslip : a zero-dependency CLI that finds every tracked file your own ignore rules say should be gone, and hands you the exact fix. $ npx gitslip 2 tracked files are ignored by your rules but still committed: config/secrets.env ↳ .gitignore:7 *.env logs/app.log ↳ .gitignore:2 *.log Fix — stop tracking them (keeps your local copy): git rm --cached -- config/secrets.env git rm --cached -- logs/app.log or let gitslip do it: gitslip --apply It tells you which rule caught each file ( .gitignore:7 *.env ), so there's no guessing. And --apply runs the git rm --cached for you — it only un-tracks, it never deletes your working copy. Why not just grep? You can grep your .gitignore patterns against git ls-files . But: A raw grep '\.env' can't tell a still-tracked leftover from a file that's correctly excluded, and it has no idea about !negation rules, build/ directory rules, nested .gitignore files, .git/info/exclude , or your global core.excludesFile . Reimplementing gitignore's matching semantics to get this right is exactly the kind of subtly-wrong code you don't want guarding your secrets. gitslip doesn't reimplement anything. It asks git. How it works (the fun part) Detection is a single git incantation: git ls-files -i -c --exclude-standard -c = tracked (cached), -i = ignored, --exclude-standard = use all the
开源项目
🔥 yifanfeng97 / Hyper-Extract - Transform unstructured text into structured knowledge with L
GitHub热门项目 | Transform unstructured text into structured knowledge with LLMs. Graphs, hypergraphs, and spatio-temporal extractions — with one command. | Stars: 1,723 | 124 stars today | 语言: Python
AI 资讯
‘Queer Eye’s’ life coach Karamo Brown launches Kē, a wellness app featuring his AI digital clone
Karamo Brown, famous for his pep talks on Netflix’s “Queer Eye,” has jumped into the wellness and AI space with his new app, Kē. After spending a year and a half focusing on his own journey—from fitness and nutrition to meditation, sobriety, relationships, and personal growth—Brown wants to help others do the same. Kē offers […]
开源项目
🔥 frappe / frappe - Low code web framework for real world applications, in Pytho
GitHub热门项目 | Low code web framework for real world applications, in Python and Javascript | Stars: 10,263 | 59 stars this week | 语言: Python
开源项目
🔥 google / agents-cli - The CLI and skills that turn any coding assistant into an ex
GitHub热门项目 | The CLI and skills that turn any coding assistant into an expert at creating, evaluating, and deploying AI agents on Google Cloud. | Stars: 2,973 | 197 stars this week | 语言: Python
开源项目
🔥 Start9Labs / start-os - A graphical server OS optimized for self-hosting
GitHub热门项目 | A graphical server OS optimized for self-hosting | Stars: 1,916 | 26 stars today | 语言: Rust
开源项目
🔥 microsoft / windows-rs - Rust for Windows
GitHub热门项目 | Rust for Windows | Stars: 12,425 | 2 stars today | 语言: Rust
开源项目
🔥 likec4 / likec4 - Visualize, collaborate, and evolve the software architecture
GitHub热门项目 | Visualize, collaborate, and evolve the software architecture with always actual and live diagrams from your code | Stars: 3,649 | 67 stars today | 语言: TypeScript
开源项目
🔥 modelcontextprotocol / servers - Model Context Protocol Servers
GitHub热门项目 | Model Context Protocol Servers | Stars: 87,414 | 61 stars today | 语言: TypeScript