Github Top Repositories
13.4K subscribers
1.56K photos
59 videos
10 files
2.14K links
Top GitHub repositories in one place ๐Ÿš€
Explore the best projects in programming, AI, data science, and more.
Download Telegram
Github Top Repositories
Photo
๐Ÿ” Deep-diving into Universal-Debloater-Alliance/universal-android-debloater-next-generation โ€” fresh off the trending list.

๐Ÿ”— https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation
๐Ÿ“ Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices. Improve your privacy, the security and battery life of your device.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

The Universal Android Debloater Next Generation is a tool designed to improve privacy and efficiency on Android devices by removing unnecessary system apps, thus reducing the attack surface and enhancing security. This project is a fork of the original Universal Android Debloater, with the goal of providing a more efficient and secure solution.

To use the tool, users can follow the usage guide provided in the project's wiki, which includes getting started instructions, features of the app, and suggested Android app replacements. The project also provides a building from source guide for those who want to get the cutting-edge version.

From a technical standpoint, the project uses the Iced GUI library and has a simple, intuitive interface. The tool does not collect or transmit any user data, with the only external connections being GET requests to GitHub for fetching the package list and checking for updates.

The project is suitable for anyone looking to debloat their Android device, including power users and developers. For real-time communication and support, users can join the project's Discord guild or use the Matrix bridge.

One-liner takeaway: The Universal Android Debloater Next Generation is a powerful tool that helps you take control of your Android device's privacy and security by debloating unnecessary system apps.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
Github Top Repositories
Photo
๐Ÿ’ก OpenBMB/VoxCPM just hit the trending charts โ€” here's why it matters.

๐Ÿ”— https://github.com/OpenBMB/VoxCPM
๐Ÿ“ VoxCPM2: Tokenizer-Free TTS for Multilingual Speech Generation, Creative Voice Design, and True-to-Life Cloning
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

VoxCPM2 is a tokenizer-free Text-to-Speech system that generates continuous speech representations via an end-to-end diffusion autoregressive architecture. It supports 30 languages, voice design, controllable voice cloning, and 48kHz studio-quality audio output.

To get started, you can install VoxCPM using pip install voxcpm and use the Python API for text-to-speech, voice design, and voice cloning. For example:
from voxcpm import VoxCPM
model = VoxCPM.from_pretrained("openbmb/VoxCPM2")
wav = model.generate(text="VoxCPM2 is the current recommended release for realistic multilingual speech synthesis.")


The system is fully open-source and commercial-ready, with support for real-time streaming and production deployment using Nano-vLLM or vLLM-Omni.

VoxCPM2 is suitable for developers, researchers, and businesses looking for a high-quality and customizable text-to-speech solution.

Overall, VoxCPM2 is a powerful tool for multilingual speech synthesis and voice creation - transforming text into realistic speech, one voice at a time.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
๐Ÿš€ Meet alibaba/zvec: a gem from today's GitHub trending list.

๐Ÿ”— https://github.com/alibaba/zvec
๐Ÿ“ A lightweight, lightning-fast, in-process vector database
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

Zvec is an open-source, in-process vector database designed for production-grade similarity search. It's lightweight, fast, and embeds directly into applications. Key features include blazing-fast search, support for dense and sparse vectors, full-text search, and hybrid retrieval. zvec offers official SDKs for multiple languages, including Python, Node.js, Go, and Rust.

To get started, you can install zvec using pip install zvec or npm install @zvec/zvec. The library runs anywhere, from notebooks to edge devices, and supports concurrent access and durable storage.

Here's a simple
example
to demonstrate its usage:

import zvec
schema = zvec.CollectionSchema(name="example", vectors=zvec.VectorSchema("embedding", zvec.DataType.VECTOR_FP32, 4))
collection = zvec.create_and_open(path="./zvec_example", schema=schema)
collection.insert([zvec.Doc(id="doc_1", vectors={"embedding": [0.1, 0.2, 0.3, 0.4]})])
results = collection.query(zvec.VectorQuery("embedding", vector=[0.4, 0.3, 0.3, 0.1]), topk=10)
print(results)


Zvec is ideal for demanding production workloads, delivering exceptional speed and efficiency. With its active community and contributing guide, it's easy to get involved and make Zvec better.
One-liner takeaway: Zvec makes vector search and AI applications blazingly fast and super easy to deploy.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
โค1
๐Ÿ’ก n0-computer/iroh just hit the trending charts โ€” here's why it matters.

๐Ÿ”— https://github.com/n0-computer/iroh
๐Ÿ“ IP addresses break, dial keys instead. Modular networking stack in Rust.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

Iroh is a library that provides an API for dialing by public key, allowing for direct connections between endpoints. Its key features include hole-punching for direct connections, relay servers for fallback connections, and QUIC connections for authenticated encryption and concurrent streams.

The library is built on noq and uses QUIC for connections. It also includes pre-existing protocols like iroh-blobs for content-addressed blob transfer and iroh-gossip for publish-subscribe overlay networks.

To get started, you can use the Rust library by installing it with cargo add iroh and then establishing connections using the Endpoint and Router APIs.

Iroh is suitable for developers who want to establish secure and direct connections between endpoints, and its MIT and Apache 2.0 licenses make it a flexible choice for various projects.

In short, iroh makes it easy to connect devices directly and securely, so you can focus on building your application.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
โค1
๐ŸŽฏ freeCodeCamp/freeCodeCamp landed on trending. Worth a proper look.

๐Ÿ”— https://github.com/freeCodeCamp/freeCodeCamp
๐Ÿ“ freeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

freeCodeCamp is a non-profit platform that offers a completely free and self-paced full-stack web development and machine learning curriculum. With thousands of interactive coding challenges, you can expand your skills and earn free developer certifications in areas like Responsive Web Design, JavaScript, and Python.

The platform is community-driven, with a forum, YouTube channel, and Discord server where you can get help, feedback, and connect with other developers. To report bugs or security issues, you can create a new GitHub issue or follow the steps outlined in the security policy.

The codebase is open-source and licensed under the BSD-3-Clause license, allowing you to contribute to the community and help others learn to code. With its donor-supported 501(c)(3) charity status, freeCodeCamp has already helped over 100,000 people get their first developer job.

Whether you're a beginner or an experienced developer, freeCodeCamp has something for everyone. So, what are you waiting for? Join the community today and start coding your way to a new career! Learn to code, change your life: code for free, certify for free, and get hired.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
โค1
Github Top Repositories
Photo
๐Ÿ“Œ Spotted on GitHub Trending: DeusData/codebase-memory-mcp โ€” let's break it down.

๐Ÿ”— https://github.com/DeusData/codebase-memory-mcp
๐Ÿ“ High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph โ€” average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

The codebase-memory-mcp GitHub repository offers the fastest and most efficient code intelligence engine for AI coding agents, capable of full-indexing an average repository in milliseconds. This engine features high-quality parsing across 158 languages through tree-sitter AST analysis and Hybrid LSP semantic type resolution for languages like Python, TypeScript, and Java.

The repository provides 14 MCP tools, including search, trace, architecture, impact analysis, and dead code detection, and supports 11 coding agents with a single static binary. Key features include extreme indexing speed, plug-and-play installation, and built-in graph visualization.

The codebase-memory-mcp has been evaluated across 31 real-world repositories, demonstrating high answer quality and efficiency. It's designed with security and trust in mind, with every release binary signed, checksummed, and scanned by antivirus engines.

To get started, users can install the engine using a one-line command and access the graph visualization UI at localhost:9749. With its cutting-edge technology and user-friendly interface, codebase-memory-mcp is the ultimate tool for coding agents - supercharge your coding experience with the power of AI-driven code intelligence.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
โค1๐Ÿ”ฅ1
๐Ÿ” Deep-diving into n0-computer/iroh โ€” fresh off the trending list.

๐Ÿ”— https://github.com/n0-computer/iroh
๐Ÿ“ IP addresses break, dial keys instead. Modular networking stack in Rust.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

Iroh is an open-source project that provides a unique approach to networking by allowing users to connect to each other using public keys. The project's main goal is to reduce the complexity of networking and make it more efficient.

At its core, iroh is built on top of the QUIC protocol, which provides features like authenticated encryption, concurrent streams, and datagram transport. The project also includes a relay system that helps establish connections between users, even if they are behind firewalls or NATs.

One of the key features of iroh is its ability to "hole-punch" - establishing a direct connection between two users, even if they are behind firewalls or NATs. If hole-punching is not possible, iroh falls back to using public relay servers.

Iroh is designed to be highly extensible, with a number of pre-existing protocols built on top of it, including iroh-blobs for content-addressed blob transfer and iroh-gossip for establishing publish-subscribe overlay networks.

To get started with iroh, users can install the Rust library using cargo add iroh and then use the library to establish connections to other users. The project also provides a number of examples and documentation to help users get started.

The iroh project is licensed under the Apache 2.0 and MIT licenses, and contributions are welcome.

Overall, iroh is a powerful and flexible networking platform that has the potential to revolutionize the way we think about networking - connect to anyone, anywhere, with just a public key.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
๐ŸŽโ—๏ธTODAY FREEโ—๏ธ๐ŸŽ

Entry to our VIP channel is completely free today. Tomorrow it will cost $500! ๐Ÿ”ฅ

JOIN ๐Ÿ‘‡

https://xn--r1a.website/+n8Rs5SujPaVkZmEy
https://xn--r1a.website/+n8Rs5SujPaVkZmEy
https://xn--r1a.website/+n8Rs5SujPaVkZmEy
Github Top Repositories
Photo
๐Ÿš€ Meet Panniantong/Agent-Reach: a gem from today's GitHub trending list.

๐Ÿ”— https://github.com/Panniantong/Agent-Reach
๐Ÿ“ Give your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu โ€” one CLI, zero API fees.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

Agent Reach ๆ˜ฏไธ€ไธช่ฎฉ AI Agent ๆ‹ฅๆœ‰ไบ’่”็ฝ‘่ƒฝๅŠ›็š„ๅทฅๅ…ทใ€‚ๅฎƒ้€š่ฟ‡ไธ€้”ฎๅฎ‰่ฃ…๏ผŒ่ฎฉไฝ ็š„ AI Agent ๅฏไปฅ่ฏป็ฝ‘้กตใ€ๆœ็ดข Twitterใ€็œ‹ YouTubeใ€ๅˆทๅฐ็บขไนฆ ็ญ‰ใ€‚

ๅฎƒ็š„ๅ…ณ้”ฎ็‰น็‚นๅŒ…ๆ‹ฌ๏ผš
- ๅฎŒๅ…จๅ…่ดน๏ผšๆ‰€ๆœ‰ๅทฅๅ…ทๅผ€ๆบ๏ผŒๆ‰€ๆœ‰ API ๅ…่ดน
- ้š็งๅฎ‰ๅ…จ๏ผšCookie ๅชๅญ˜ๅœจไฝ ๆœฌๅœฐ๏ผŒไธไธŠไผ ไธๅค–ไผ 
- ๆŒ็ปญๆขไปฃ๏ผšๆฏไธชๅนณๅฐ้ƒฝๆ˜ฏใ€Œ้ฆ–้€‰ + ๅค‡้€‰ใ€ๅคšๅŽ็ซฏ่ทฏ็”ฑ

ไฝฟ็”จๆ–นๆณ•้žๅธธ็ฎ€ๅ•๏ผš
- ๅฎ‰่ฃ…๏ผšๅธฎๆˆ‘ๅฎ‰่ฃ… Agent Reach๏ผšhttps://raw.githubusercontent.com/Panniantong/agent-reach/main/docs/install.md
- ๆ›ดๆ–ฐ๏ผšๅธฎๆˆ‘ๆ›ดๆ–ฐ Agent Reach๏ผšhttps://raw.githubusercontent.com/Panniantong/agent-reach/main/docs/update.md

ๆ”ฏๆŒ็š„ๅนณๅฐๅŒ…ๆ‹ฌ๏ผš
- ็ฝ‘้กต
- YouTube
- RSS
- ๅ…จ็ฝ‘ๆœ็ดข
- GitHub
- Twitter
- B็ซ™
- Reddit
- ๅฐ็บขไนฆ
- LinkedIn

ๆŠ€ๆœฏไบฎ็‚นๆ˜ฏ๏ผš
- ๆฏไธชๅนณๅฐ = ้ฆ–้€‰ + ๅค‡้€‰็š„ๆœ‰ๅบๅŽ็ซฏๅˆ—่กจ
- agent-reach doctor ๅ‘Š่ฏ‰ไฝ ๆฏไธชๆธ ้“็š„็Šถๆ€

้€‚ๅˆ็š„ๅ—ไผ—ๆ˜ฏ๏ผš
- AI ็ˆฑๅฅฝ่€…
- ็ ”ๅ‘ไบบๅ‘˜
- ไบ’่”็ฝ‘ไผไธš

ไธ€ๅฅ่ฏๆ€ป็ป“๏ผšAgent Reach ่ฎฉไฝ ็š„ AI Agent ๆ‹ฅๆœ‰ไบ’่”็ฝ‘่ƒฝๅŠ›๏ผŒ็ฎ€ๅ•ใ€ๅ…่ดนใ€ๅฎ‰ๅ…จใ€‚

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe
Github Top Repositories
Photo
โšก meshery/meshery is making waves. Here's the full picture.

๐Ÿ”— https://github.com/meshery/meshery
๐Ÿ“ Meshery, the cloud native manager
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

Meshery is a cloud native manager that enables the design and management of Kubernetes-based infrastructure and applications. It offers visual and collaborative GitOps, freeing you from YAML while managing multi-cluster deployments. Key features include infrastructure lifecycle management, multiple Kubernetes clusters and clouds, and visually managing infrastructure. Meshery provides a single pane of glass to manage multiple clusters and supports 380+ integrations. It's perfect for teams looking to collaborate on cloud native projects with features like Workspaces and Environments. With Meshery, you can manage your connections and credentials with ease and preview changes to your infrastructure before merging. Meshery is a self-service engineering platform that simplifies cloud native management - try it now and transform your cloud native experience!

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿง  Channel: https://xn--r1a.website/GithubRe