🔥 santinic / audiblez - Generate audiobooks from e-books
GitHub热门项目 | Generate audiobooks from e-books | Stars: 7,750 | 151 stars today | 语言: Python
找到 1108 篇相关文章
GitHub热门项目 | Generate audiobooks from e-books | Stars: 7,750 | 151 stars today | 语言: Python
GitHub热门项目 | OpenKB: Open LLM Knowledge Base | Stars: 2,349 | 208 stars today | 语言: Python
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
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
GitHub热门项目 | A one stop repository for generative AI research updates, interview resources, notebooks and much more! | Stars: 27,444 | 203 stars today | 语言: HTML
GitHub热门项目 | macOS video editor built for AI | Stars: 1,436 | 749 stars today | 语言: Swift
For young people, the trend removes the stigma of being unmarried and alone, and recasts it as something to aim for, not avoid.
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.
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
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
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 […]
GitHub热门项目 | Low code web framework for real world applications, in Python and Javascript | Stars: 10,263 | 59 stars this week | 语言: Python
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
GitHub热门项目 | A graphical server OS optimized for self-hosting | Stars: 1,916 | 26 stars today | 语言: Rust
GitHub热门项目 | Rust for Windows | Stars: 12,425 | 2 stars today | 语言: Rust
GitHub热门项目 | Visualize, collaborate, and evolve the software architecture with always actual and live diagrams from your code | Stars: 3,649 | 67 stars today | 语言: TypeScript
GitHub热门项目 | Model Context Protocol Servers | Stars: 87,414 | 61 stars today | 语言: TypeScript
GitHub热门项目 | A framework for building agent-native applications. | Stars: 685 | 131 stars today | 语言: TypeScript
GitHub热门项目 | StyleX is the styling system for ambitious user interfaces. | Stars: 9,351 | 26 stars today | 语言: JavaScript
GitHub热门项目 | Extensions for the Zed editor | Stars: 1,758 | 3 stars today | 语言: JavaScript