Github Top Repositories
14.1K subscribers
2.84K photos
59 videos
10 files
2.97K links
Top GitHub repositories in one place 🚀
Explore the best projects in programming, AI, data science, and more.
Download Telegram
Github Top Repositories
Photo
🚀 Meet NawfalMotii79/PLFM_RADAR: a gem from today's GitHub trending list.

🔗 https://github.com/NawfalMotii79/PLFM_RADAR
📝 Open-source, low-cost 10.5 GHz PLFM phased array RADAR system
──────────────────────────────

Could not generate summary at this time.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
Github Top Repositories
Photo
💡 jundot/omlx just hit the trending charts — here's why it matters.

🔗 https://github.com/jundot/omlx
📝 LLM inference server with continuous batching & SSD caching for Apple Silicon — managed from the macOS menu bar
──────────────────────────────

Could not generate summary at this time.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
🔥 genlayerlabs/genlayer-project-boilerplate is trending — and it deserves your attention.

🔗 https://github.com/genlayerlabs/genlayer-project-boilerplate
📝 No description.
──────────────────────────────

Could not generate summary at this time.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
🎯 OpenCut-app/OpenCut landed on trending. Worth a proper look.

🔗 https://github.com/OpenCut-app/OpenCut
📝 The open-source CapCut alternative
──────────────────────────────

Could not generate summary at this time.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
📌 Spotted on GitHub Trending: harry0703/MoneyPrinterTurbo — let's break it down.

🔗 https://github.com/harry0703/MoneyPrinterTurbo
📝 利用 AI 大模型和自动化工作流,根据主题或关键词一键生成高清短视频。Generate HD short videos from a topic or keyword with an automated AI workflow.
──────────────────────────────

MoneyPrinterTurbo 💸 – One‑stop AI short‑video generator

Turn a simple topic or keyword into a polished, high‑definition short video – script, footage, subtitles, voice‑over and music all done automatically.

---

Why it matters
If you ever needed a quick TikTok, Instagram Reel or YouTube Short but lacked time or editing skills, MoneyPrinterTurbo does the heavy lifting. Feed it a phrase, pick a format, and the system produces a ready‑to‑publish video in seconds.

---

Key features

- Four interaction modes: AI Agent, Web UI, REST API, and CLI – pick the style that fits your workflow.
- AI‑generated script (or you can supply your own).
- Multiple HD resolutions:
• Portrait 9:16 (1080×1920)
• Landscape 16:9 (1920×1080)
- Batch creation: generate many variants at once and select the best.
- Adjustable clip length for fine‑tuned pacing.
- Multilingual script support.
- Voice synthesis from a wide range of providers (Edge TTS, Azure Speech, SiliconFlow, Google Gemini, Xiaomi MiMo, ElevenLabs, Chatterbox) with real‑time preview.
- Customizable subtitles: font, size, color, border, background, position.
- Background music: random pick or user‑provided track, volume control.
- Asset sourcing: use your local media or pull royalty‑free clips from Pexels, Pixabay, Coverr.
- Model agnostic: works with Kimi (Moonshot), OpenAI, Google Gemini, DeepSeek, Alibaba Tongyi Qianwen, Azure OpenAI, Volcengine Ark, xAI Grok, MiniMax, and many more through Cloudflare AI Gateway, ModelScope, Ollama, LiteLLM, Groq, etc.
- One‑click cross‑platform publishing: auto‑upload to TikTok, Instagram, YouTube Shorts.

---

Typical usage

Web UI – launch the server, open a browser, type a topic, hit “Generate”, and watch the video assemble in the preview pane.

CLI example
python -m moneyprinterturbo \\
--topic "Future of renewable energy" \\
--resolution portrait \\
--language zh \\
--tts elevenlabs \\
--output ./output/video.mp4


API call (JSON payload)
{
"topic": "Space exploration in 2050",
"resolution": "landscape",
"language": "en",
"tts_provider": "azure",
"music": "random",
"publish": ["tiktok", "youtube"]
}


The system then:
1. Uses the selected LLM to draft a concise script.
2. Extracts key visual keywords and searches the chosen stock libraries.
3. Generates voice‑over, syncs subtitles, mixes background music.
4. Renders the final video file and optionally pushes it to the selected platforms.

---

Technical highlights

- Modular architecture: controllers, services, and model adapters are cleanly separated, making extensions straightforward.
- Unified model gateway: a thin abstraction layer translates calls to any supported LLM or multimodal model, so you can swap providers without code changes.
- Asynchronous pipeline built on Python 3.11+ asyncio, allowing parallel downloading of assets and concurrent TTS synthesis for fast turnaround.
- Docker‑friendly: a single‑command container image is provided for hassle‑free deployment on Windows, macOS or Linux.
- Extensible asset plugins let you add new stock‑video APIs or point to private media collections.

---

Who should try it
(1/2)
- Content creators and marketers looking to scale short‑form video output.
- Small businesses that need affordable, automated promo clips.
- Developers who want to embed AI video generation into their own products via the API.
- Educators or hobbyists experimenting with AI‑driven multimedia pipelines.

---

Get started
1. git clone https://github.com/harry0703/MoneyPrinterTurbo.git
2. cd MoneyPrinterTurbo && pip install -r requirements.txt
3. Choose a mode (Web UI: python -m moneyprinterturbo.webui, CLI, or API) and follow the on‑screen prompts.

---

Takeaway – MoneyPrinterTurbo turns a single idea into a scroll‑stopping video, all without lifting a finger.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
(2/2)
📌 Spotted on GitHub Trending: modular/modular — let's break it down.

🔗 https://github.com/modular/modular
📝 The Modular Platform (includes MAX & Mojo)
──────────────────────────────

What is Modular?
Modular is an open‑source platform that brings together everything you need to build, train, and serve AI models. It ships two star components: the MAX Framework🧑‍🚀 for high‑performance inference, and the Mojo language🔥 for fast, low‑level model code.

Key pieces you’ll find in this repo

Mojo compiler – the /KGEN folder contains the compiler front‑end.
Mojo standard library – ready‑to‑use utilities live in /mojo/stdlib.
MAX accelerator library – GPU/TPU kernels are under /max/kernels.
MAX inference server – an OpenAI‑compatible endpoint in /max/python/max/serve.
MAX model pipelines – Python‑based graph pipelines in /max/python/max/pipelines.
Examples – real‑world demos for both MAX and Mojo in /max/examples and /mojo/examples.


Getting started in a nutshell
If you just want to spin up a model with MAX, follow the official quick‑start:

# Clone the repo
git clone https://github.com/modular/modular.git
cd modular

# Install the Python side
pip install -r max/python/requirements.txt

# Run the example server
python -m max.serve --model your_model_name


For Mojo, the quick‑start guide walks you through installing the compiler and running a hello‑world program:

# Install Mojo (see the Mojo docs for the latest command)
curl -sSf https://install.mojo-lang.org | bash

# Compile and run a Mojo file
mojo my_program.mojo


Technical highlights

Unified code base – Both the accelerator kernels and the inference server are written in Python, while performance‑critical parts live in Mojo, letting you drop to native speed when needed.
OpenAI‑compatible API – The MAX server speaks the same JSON schema as OpenAI, so existing client libraries work out‑of‑the‑box.
Modular pipelines – Graph‑style pipelines let you compose preprocessing, model execution, and post‑processing with just a few Python lines.
Extensible standard library – Mojo’s stdlib is open for contributions, so you can add new data structures or math helpers without waiting for a new compiler release.
Apache 2.0 + LLVM exceptions – Most of the repo is permissively licensed; the MAX components follow the Modular Community License.


Who should dive in?

AI researchers who need a fast inference server that can be swapped into existing pipelines.
Systems engineers looking to write custom kernels in a language that compiles to native code.
Python developers who want to experiment with AI models but also need the option to drop into Mojo for speed‑critical sections.
Open‑source contributors eager to shape the future of a unified AI platform.


Community & support
Join the conversation on Discord, the forum, or the regular community calls. All events and recordings are posted on the Meetup page and YouTube channel.

TakeawayModular gives you the freedom to prototype in Python and accelerate to native performance with Mojo, all under one open‑source roof.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
* **Engineers who already use AI assistants** and want reproducible, low‑risk workflows.
* **Team leads** needing a shared language and ticket‑generation pipeline that the whole squad (human and AI) can follow.
* **Solo developers** who want the safety net of TDD and design reviews without writing boilerplate scripts.
* **Tool‑builders** looking for a ready‑made catalog of prompt‑driven capabilities to embed in their own agents.

Bottom line

These skills turn a clever LLM into a disciplined teammate, letting you keep the creative speed of AI while preserving the rigor of real software engineering.

Takeaway: Give your AI a playbook, and it will stop guessing and start building.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
(2/2)
🔍 Deep-diving into AprilNEA/OpenLogi — fresh off the trending list.

🔗 https://github.com/AprilNEA/OpenLogi
📝 ⚡️A native, local-first alternative to Logitech Options+, written in Rust 🦀 — remap buttons, DPI, and SmartShift over HID++. No account, no telemetry.
──────────────────────────────

OpenLogi – a native, local‑first replacement for Logitech Options+

What it is
OpenLogi is a Rust‑powered application that lets you unlock the full HID++ and UVC capabilities of Logitech mice, keyboards, and webcams. It runs locally on macOS, Linux and Windows, giving you deep control without any cloud‑side account.

Why you might care
If you’re fed up with Logitech’s Options+ (heavy, Windows‑only, closed source) or you need a truly cross‑platform solution, OpenLogi offers a lightweight alternative that works on Linux out of the box, lets you script everything via a CLI, and stores all settings in a single, human‑readable TOML file.

Key features at a glance

Universal device support – Logi Bolt, Unifying receivers, Bluetooth or wired connections, with live battery status.
Button remapping – OS‑level input hook, built‑in action catalog, plus custom shortcuts defined in TOML.
Per‑application profiles – automatic overlay switching when a window gains focus (macOS + Windows; Linux on X11/XWayland).
Gestures on any button – assign directional gestures to any physical button or disable them entirely.
Actions Ring – an eight‑slot, cursor‑centered overlay for quick actions, customizable per app.
DPI & SmartShift – preset DPI cycles, smart wheel modes and permanent ratchet panels.
Keyboard RGB – static lighting control on supported models.
Webcam control – plug‑and‑play UVC cameras (Brio, StreamCam, C920, …) with live preview, hardware‑level image settings (zoom, focus, exposure, white‑balance, etc.) and one‑click profiles (Default / Streaming / Video call).
Litra lights – power, brightness and colour‑temperature control, with optional auto‑power tied to camera activity.

Technical highlights

- Written in Rust with the GPUI toolkit for a responsive native UI.
- Uses a dedicated background openlogi-agent that owns HID++ I/O, exposing a clean CLI for automation.
- Linux packages install udev rules so the agent can access /dev/hidraw*, /dev/uinput and input events without sudo.
- Configuration lives in a single config.toml file – easy to version‑control and sync across machines.
- Media‑key actions on Linux go through D‑Bus MPRIS; macOS/Windows map to native equivalents where possible.
- Supports both x86_64/amd64 and arm64/aarch64 binaries; NixOS module available for declarative installs.

Who it’s for

- Power users who want granular control over every Logitech peripheral.
- Developers and sysadmins who prefer scriptable, file‑based configs.
- Linux enthusiasts who have been waiting for a first‑class Logitech manager.
- Anyone who wants a stable, open‑source alternative to Options+ without sacrificing features.

Getting started (quick install)

macOS – download the notarized .dmg from the latest release or install via Homebrew:

brew install --cask openlogi


Linux – pick the package for your distro:

# Debian/Ubuntu
sudo dpkg -i openlogi_*.deb

# Fedora/RHEL
sudo rpm -i openlogi-*.rpm

# Arch
sudo pacman -U openlogi-*.pkg.tar.zst


After installation, enable the agent for your user:

systemctl --user enable --now openlogi-agent.service

(1/2)
Windows – download the signed .msi or portable .zip, unzip side‑by‑side with openlogi-agent.exe, and run OpenLogi.exe. The agent lives in the system tray.

Using the CLI – all actions are also available from the command line; see USAGE.md for the full list. Example to list connected devices:

openlogi list-devices


Configuration basics – edit the single config.toml (usually under ~/.config/openlogi/) to define profiles, button mappings, gestures, and webcam presets. Changes are applied instantly; no restart required.

Community & development

- Active development; features and config may evolve.
- Contributions welcome – see DEVELOPMENT.md for build instructions.
- Thanks to contributors for Linux, Windows, camera support, and the underlying HID++ library (fork of hidpp).

License – dual‑licensed under Apache 2.0 or MIT, giving you flexibility for commercial or open‑source use.

Takeaway – OpenLogi puts the power of Logitech hardware back in your hands, cross‑platform and fully scriptable.

Turn your Logitech gear into a truly personal workspace.

──────────────────────────────
🧠 Channel: https://t.me/GithubRe
(2/2)
🌟 obra/superpowers caught my eye on GitHub Trending today.

🔗 https://github.com/obra/superpowers
📝 An agentic skills framework & software development methodology that works.
──────────────────────────────

Superpowers is a full‑stack methodology that turns AI‑powered coding agents into disciplined, test‑driven engineers. It works by loading a library of composable skills that automatically guide the agent through every stage of software creation – from brainstorming a spec to delivering a clean, merge‑ready branch.

Why it matters
Instead of letting an LLM dive straight into code, Superpowers makes the agent pause, ask clarifying questions, and produce a readable design document. Once you approve the spec, the agent builds a granular implementation plan, then executes it with sub‑agent‑driven development, two‑stage reviews, and strict RED‑GREEN‑REFACTOR cycles. The result is code that respects TDD, YAGNI and DRY without you having to micromanage the bot.

Key Features


Skills Library – over a dozen ready‑to‑use skills covering testing, debugging, collaboration and meta‑tasks (e.g. test-driven-development, systematic-debugging, brainstorming, using-git-worktrees, subagent-driven-development).
Mandatory workflow – the agent checks for the appropriate skill before every action, ensuring the process is followed, not merely suggested.
Sub‑agent orchestration – each implementation task spawns a fresh sub‑agent that first validates spec compliance and then reviews code quality before committing.
Automated plan generation – designs are broken into 2‑5‑minute tasks with explicit file paths, code snippets and verification steps.
Built‑in TDD enforcement – failing tests are written first, code is deleted after the green phase, and the test-driven-development skill monitors the RED‑GREEN‑REFACTOR loop.
Git worktree isolation – a separate branch and workspace are created automatically, keeping the main line pristine until you merge.
Optional visual telemetry – a tiny logo reports only the Superpowers version (opt‑out via SUPERPOWERS_DISABLE_TELEMETRY).


How to get it

Superpowers is distributed as a plugin for dozens of AI coding environments. Install the appropriate package for your harness; the same skill set works everywhere.


# Claude Code (official marketplace)
/plugin install superpowers@claude-plugins-official

# Antigravity
agy plugin install https://github.com/obra/superpowers

# Codex CLI
/plugins # then search “superpowers” and install

# Cursor
/add-plugin superpowers

# Devin CLI
devin plugins install obra/superpowers

# Factory Droid
droid plugin marketplace add https://github.com/obra/superpowers
droid plugin install superpowers@superpowers

# Gemini CLI
gemini extensions install https://github.com/obra/superpowers

# GitHub Copilot CLI
copilot plugin marketplace add obra/superpowers-marketplace
copilot plugin install superpowers@superpowers-marketplace

# Grok Build CLI
grok plugin install superpowers@xai-official --trust

# Kimi Code
/plugins install https://github.com/obra/superpowers

# OpenCode
# Follow the .opencode/INSTALL.md instructions

# Pi
pi install git:github.com/obra/superpowers

# Hermes Agent
hermes plugins install obra/superpowers --enable


After installation, the plugin’s using-superpowers bootstrap runs at session start (or after compaction for Pi), so the agent is instantly equipped with the full workflow.

The basic workflow
(1/2)