🔥 tmoroney / auto-subs - On-device subtitle generation that connects directly to DaVi
GitHub热门项目 | On-device subtitle generation that connects directly to DaVinci Resolve, Premiere, and After Effects. | Stars: 3,501 | 12 stars today | 语言: TypeScript
找到 1155 篇相关文章
GitHub热门项目 | On-device subtitle generation that connects directly to DaVinci Resolve, Premiere, and After Effects. | Stars: 3,501 | 12 stars today | 语言: TypeScript
GitHub热门项目 | Xray panel supporting multi-protocol multi-user expire day & traffic & IP limit (Vmess, Vless, Trojan, ShadowSocks, Wireguard, Hysteria, Tunnel, Mixed, HTTP, Tun) | Stars: 38,891 | 125 stars today | 语言: TypeScript
GitHub热门项目 | A full-featured download manager — rebuilt from the ground up | Stars: 6,956 | 407 stars today | 语言: TypeScript
GitHub热门项目 | Pi extension for async subagent delegation with truncation, artifacts, and session sharing | Stars: 1,731 | 59 stars today | 语言: TypeScript
GitHub热门项目 | Eventra is a comprehensive event management system that empowers organizers to create, manage, and track events seamlessly. Built with a modern tech stack featuring React frontend and Spring Boot backend, Eventra provides everything needed to run successful events from creation to post-event analytics. | Stars: 106 | 3 stars today | 语言: JavaScript
GitHub热门项目 | 30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw | Stars: 46,386 | 13 stars today | 语言: JavaScript
GitHub热门项目 | The library for web and native user interfaces. | Stars: 245,344 | 30 stars today | 语言: JavaScript
GitHub热门项目 | PackGo: Your ultimate travel companion. Built with React, Redux, Node.js & MongoDB to seamlessly plan trips, track budgets, check weather, and organize bookings in one intuitive dashboard. | Stars: 52 | 7 stars today | 语言: JavaScript
GitHub热门项目 | JavaScript 3D Library. | Stars: 112,770 | 16 stars today | 语言: JavaScript
GitHub热门项目 | Marketing skills for Claude Code and AI agents. CRO, copywriting, SEO, analytics, and growth engineering. | Stars: 31,298 | 160 stars today | 语言: JavaScript
GitHub热门项目 | Esphome based smart home control panel | Stars: 476 | 38 stars today | 语言: JavaScript
GitHub热门项目 | The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface. | Stars: 115,097 | 122 stars today | 语言: Python
GitHub热门项目 | A list of developer portfolios for your inspiration | Stars: 23,158 | 53 stars today | 语言: Python
GitHub热门项目 | Memory engine and app that is extremely fast, scalable. The Memory API for the AI era. | Stars: 23,064 | 236 stars today | 语言: TypeScript
GitHub热门项目 | A straightforward method for training your LLM, from downloading data to generating text. | Stars: 2,577 | 327 stars today | 语言: Jupyter Notebook
GitHub热门项目 | The open-source repo for docs.github.com | Stars: 19,599 | 20 stars today | 语言: TypeScript
GitHub热门项目 | Hermes WebUI: The best way to use Hermes Agent from the web or from your phone! | Stars: 9,591 | 320 stars today | 语言: Python
GitHub热门项目 | 🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! | Stars: 56,093 | 639 stars today | 语言: Python
This is a submission for the [GitHub Finish-Up-A-Thon Challenge] What I Built LeadBotX is an AI-powered lead generation platform prototype designed to simulate how modern businesses can automatically discover, filter, and manage high-quality leads using intelligent automation workflows. This project is not just a simple frontend demo — it represents a revived college-level concept that I initially started earlier but left incomplete due to time constraints and complexity. For this challenge, I revisited the idea and transformed it into a fully structured SaaS-style frontend system with improved UI, better workflow representation, and a more realistic product-like experience. The main goal of LeadBotX is to visually demonstrate how an AI-based lead generation system works end-to-end in a real-world SaaS environment. Tech Stack This project was built using modern frontend technologies: React.js → Component-based UI structure CSS3 → Custom responsive styling system AOS (Animate On Scroll) → Smooth scroll animations Lucide Icons & React Icons → UI iconography GitHub Copilot → Assisted in code generation, debugging, and UI improvements Demo Source Code: https://github.com/Khushisingh-dev/LeadBotX Production Landing Page: https://lead-bot-x.vercel.app/ Before (Initial Version)- After (Final Version)- The Comeback Story This project originally started as a college-level concept during my development learning phase. At that time, I built only a basic structure and initial UI, but I was unable to complete it due to time limitations and complexity of the idea. It remained an unfinished project for a long time. When I came across this challenge, I decided to revisit LeadBotX and transform it into something more meaningful and complete. Instead of just polishing the UI, I focused on: Rebuilding the structure into a proper SaaS layout Improving workflow clarity and user journey Enhancing UI/UX consistency across all sections Making the product feel like a real-world AI tool prot
This is a submission for the GitHub Finish-Up-A-Thon Challenge The Bug That Doubled Real Trades On May 21, my live trading bot generated six duplicate execution attempts in one session. SafeAgent blocked all six. Without the guard: one duplicated a $1,350 sell another doubled a TQQQ position total duplicate transaction exposure: $3,653 That session changed how I think about AI agents, retries, and execution guarantees. What I Built SafeAgent is an exactly-once execution guard for AI agents and SaaS applications. It prevents duplicate payments, emails, trades, and webhook processing when retries fire after a timeout or crash. Live endpoint: https://safeagent-production.up.railway.app GitHub: https://github.com/azender1/SafeAgent PyPI: pip install safeagent-exec-guard The Comeback Story How it actually started Six months ago I was building two things at once: PeerPlay — a patented P2P wagering exchange for skill-based video game tournaments (USPTO provisional 63/914,036) — and a live QQQ/TQQQ momentum trading bot running on Alpaca Markets. Both hit the same bug. Contest verification agent times out, retries, settlement fires twice. Bot order fills, confirmation drops, retry fires, doubled position. Same failure mode. Different domain. Different models pushed me toward very different architectures during development. Some were fast but overconfident. The most useful moments came when a model explained why an approach was broken before I implemented it. That's part of why SafeAgent sat unfinished. Not just time — wrong turns that burned momentum. Why local idempotency fails Early versions used a local SQLite guard. It worked until it didn't: workers restart and the in-memory state is gone containers reschedule and replay from the last checkpoint retries land on a different machine entirely Exactly-once semantics require a durable coordination boundary outside the worker itself. That's what the hosted /claim endpoint provides — the claim lives on the server, not in the p