~/projects/vortex
Vortex
[ONGOING]TIMELINE
Jan 2026 - Present
ROLE
Core Maintainer
TEAM
Open Source Contributor
CATEGORY
Software Engineering

// OVERVIEW
Vortex is a fast, stable, and lightweight BitTorrent client programmed in C++ and Qt, utilizing the powerful libtorrent library. It aims to be a premium, open-source alternative to conventional torrent clients by delivering a highly polished user interface devoid of ads, trackers, or hidden costs, while maintaining deep protocol support.
- Polished Qt Interface
- Remote Control Web UI
- Integrated Search Engine
- Granular Bandwidth Control
// FEATURES
01/ Premium BitTorrent Experience
- Polished Qt Interface: A clean, intuitive layout designed for ease of use and seamless integration across desktop environments.
- Remote Control Web UI: A responsive, password-secured web interface that mimics the desktop client for remote download management.
02/ Advanced Torrent Management
- Integrated Search Engine: Extensible Python-based architecture allowing simultaneous search queries across multiple popular torrent trackers.
- Granular Bandwidth Control: Advanced global and per-torrent speed limits, complemented by a built-in RSS feed reader and automated downloader with regex filtering.
// INSTALLATION
Download
Get the latest release from vortexproject.in — available for Windows and Linux.
// CHALLENGES & SOLUTIONS
PROBLEM
Preventing GUI thread freezes during heavy Python-based concurrent search queries
SOLUTION
Engineered a decoupled execution model where Python search plugins run in separate background processes, communicating results back to the C++ Qt frontend asynchronously to ensure the UI remains perfectly responsive.