Healthcare IT engineer and product builder with 16+ years across systems administration, medical imaging technology, and production software delivery.
- Primary technical engineer for PACS deployments, DR panel configurations, cloud migrations, and clinical support across domestic and international accounts
- Independently built 10+ production-grade platforms, including a cloud PACS, lead intelligence engine, X-ray room compliance tool, document workflow system, RMM platform, and acquisition workstation software
- Earlier career: PBS affiliate systems administration, MSP field operations, Windows Server, Cisco networking, Hyper-V, SCCM, Active Directory, and broadcast infrastructure
- AI-augmented development is the force multiplier; the foundation is infrastructure, automation, and DICOM/PACS domain expertise
- Public portfolio: 184 active repos, 177 visitor-facing projects, and production work across Python, TypeScript/React, C++20, C#/.NET/WPF, Go, Rust, Kotlin, and PowerShell
| Signal | Detail |
|---|---|
| IT operations | 16+ years |
| Medical imaging | DICOM/PACS, DR panels, cloud migration |
| Product delivery | 10+ production platforms |
| Cloud PACS | 9-container Docker stack |
| Lead intelligence | 350+ plugins, 1,678 tests |
| Compliance tooling | 3D X-ray room planner, 2,216 tests |
| Public catalog | 184 active repos, 13-language portfolio |
Currently Building
| Project | Focus | Action |
|---|---|---|
| Vantage | Customizable new tab dashboard for Chromium (JavaScript) | ⬇ CRX/XPI |
| UniversalConverterX | Native Windows file converter, 1000+ formats (C#/.NET 10) | Repo |
| AppManagerNG | Power-user Android package manager (Kotlin) | Repo |
| PhoneFork | Dual-Samsung Android migration tool for Windows (C#/.NET 10) | Repo |
| FileOrganizer | AI-powered file organizer with WinUI 3 shell (C#/Python) | ⬇ Download |
| Need | Best path | Why |
|---|---|---|
| A Windows utility you can run now | PowerShell or Desktop | Copy a branch-pinned command or use a release download when one exists. |
| Browser tools and userscripts | Extensions | Install links stay pointed at releases or raw userscript URLs. |
| Android apps | Android | APK-ready projects show direct release actions; work-in-progress apps stay marked as repos. |
| Live web tools | Web | Launch in-browser tools without local setup. |
| The complete searchable catalog | Full portfolio | Uses the generated project feed from this repo. |
| Signal | Current state |
|---|---|
| Public repos tracked | 184 |
| README entries | 177 visitor-facing projects |
| Primary actions | 102 downloads, 27 launch links, 11 userscript installs |
| Active build queue | 5 projects linked from the first screen |
| Trust gates | Public-only links, medical/X-ray privacy guard, branch-pinned install snippets |
| Project | Category | Stars | Description | Action |
|---|---|---|---|---|
| win11-nvme-driver-patcher | PowerShell | ⭐41 | GUI to enable Windows Server 2025 NVMe driver on Win11 | ⬇ Download |
| OpenCut | Python | ⭐17 | AI-powered video editing automation for Premiere Pro — caption generation, audio processing, VFX | ⬇ Download |
| project-nomad-desktop | Python | ⭐11 | Offline survival command center — maps, AI chat, situation room, NukeMap, supply tracking | ⬇ Download |
| LibreSpot | PowerShell | ⭐11 | Spotify customization — automates Spicetify, themes, extensions | ⬇ Download |
| VideoSubtitleRemover | Media | ⭐15 | Remove hardcoded subtitles from video | ⬇ Download |
| Astra-Deck | Extensions | ⭐9 | Premium YouTube enhancement extension — 150+ features for Chrome & Firefox | ⬇ CRX/XPI |
| Network_Security_Auditor | PowerShell | ⭐6 | 67 automated checks across 8 security domains, MITRE ATT&CK mapping | ⬇ Download |
| ZeusWatch | Android | ⭐6 | Premium dark weather app — no API keys required | ⬇ APK |
| NovaCut | Android | ⭐10 | Professional video editor — 40+ effects, 37 transitions, 29 engines | ⬇ APK |
| HostShield | Android | ⭐7 | AMOLED-dark hosts-based ad blocker — inspired by AdAway | ⬇ APK |
💾 First-time setup -- New to this? Install Python 3 + Git in one paste.
The PowerShell and Python sections clone repos with Git and run scripts with Python 3 when needed. On a fresh Windows machine, open PowerShell and paste:
irm https://raw.githubusercontent.com/SysAdminDoc/SysAdminDoc/main/setup.ps1 | iex| Step | Behavior |
|---|---|
| Checks first | Skips Python or Git when already installed. |
| Installs with Windows tooling | Uses winget for Python 3.12 and Git for Windows. |
| Refreshes the shell | Updates the current PATH so the commands below work without reopening PowerShell. |
| Shows its source | setup.ps1 is the exact script being run. |
Already have Python and Git? Skip this and open the category you need.
⚡ PowerShell System Utilities -- 30 repos -- Requires Git (see First-time setup above).
Start with: win11-nvme-driver-patcher, LibreSpot, Network_Security_Auditor.
win11-nvme-driver-patcher ⭐41 -- GUI to enable Windows Server 2025 NVMe driver on Win11 ⬇ Download
$d="$env:TEMP\win11-nvme-driver-patcher"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/win11-nvme-driver-patcher $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NVMe_Driver_Patcher.ps1"Network_Security_Auditor ⭐6 -- 67 automated checks across 8 security domains, MITRE ATT&CK mapping ⬇ Download
$d="$env:TEMP\Network_Security_Auditor"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Network_Security_Auditor $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NetworkSecurityAudit.ps1"LibreSpot ⭐11 -- Spotify customization — automates Spicetify, themes, extensions ⬇ Download
$d="$env:TEMP\LibreSpot"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/LibreSpot $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\LibreSpot.ps1"WinForge -- All-in-one Windows provisioning suite — app installer, tweaks, features, updates ⬇ Download
$d="$env:TEMP\WinForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/WinForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\WinForge.ps1"Debloat-Win11 ⭐1 -- Enterprise Windows 11 debloating with AppX removal, Office cleanup, telemetry blocking ⬇ Download
$d="$env:TEMP\Debloat-Win11"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Debloat-Win11 $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Debloat-Win11.ps1"Restore-WindowsDefaults -- Reverse debloat changes and restore Windows to factory defaults ⬇ Download
$d="$env:TEMP\Restore-WindowsDefaults"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Restore-WindowsDefaults $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Restore-WindowsDefaults.ps1"DefenderControl ⭐4 -- WPF GUI to fully disable or re-enable Microsoft Defender ⬇ Download
$d="$env:TEMP\DefenderControl"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/DefenderControl $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\DefenderControl.ps1"DisableDefender ⭐6 -- Defender disabler/remover with CLI + premium WPF GUI; firewall preserved ⬇ Download
$d="$env:TEMP\DisableDefender"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/DisableDefender $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\DisableDefender.ps1"DefenderShield -- Repair and restore Windows Defender and Firewall after debloaters ⬇ Download
$d="$env:TEMP\DefenderShield"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/DefenderShield $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\DefenderShield.ps1"TelemetrySlayer -- WPF GUI to disable Windows telemetry, data collection, and compatibility bloat ⬇ Download
$d="$env:TEMP\TelemetrySlayer"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/TelemetrySlayer $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\TelemetrySlayer.ps1"FirewallForge -- WPF Windows Firewall manager with live rule editing and offline backup editor ⬇ Download
$d="$env:TEMP\FirewallForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FirewallForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\FirewallManager.ps1"NetForge ⭐1 -- WPF network adapter manager — static/DHCP, DNS presets, profile management ⬇ Download
$d="$env:TEMP\NetForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/NetForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NetForge.ps1"SystemUpdatePro -- Enterprise Windows update automation — OEM drivers, Windows Update, winget ⬇ Download
$d="$env:TEMP\SystemUpdatePro"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SystemUpdatePro $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\SystemUpdatePro.ps1"WURepair ⭐2 -- Comprehensive Windows Update component repair — DLL re-registration, DISM, SFC, network reset ⬇ Download
$d="$env:TEMP\WURepair"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/WURepair $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\WURepair.ps1"SoftwareScannerGUI -- WPF audit tool for installed software — AppX, Win32, services, tasks, startup entries ⬇ Download
$d="$env:TEMP\SoftwareScannerGUI"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SoftwareScannerGUI $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\SoftwareScannerGUI.ps1"NuclearDellRemover ⭐1 -- Scorched-earth Dell bloatware removal — 8-phase complete cleanup ⬇ Download
$d="$env:TEMP\NuclearDellRemover"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/NuclearDellRemover $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NuclearDellRemover.ps1"Disable-AdobeTelemetry ⭐1 -- Comprehensive Adobe telemetry and GrowthSDK suppression for Windows ⬇ Download
$d="$env:TEMP\Disable-AdobeTelemetry"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Disable-AdobeTelemetry $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Disable-AdobeTelemetry.ps1"Wingetter ⭐2 -- Discover, select, and bulk install software via Winget ⬇ Download
$d="$env:TEMP\Wingetter"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Wingetter $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Wingetter.ps1"Start-Menu-Organizer ⭐1 -- Clean junk, detect broken shortcuts, reorganize Start Menu
$d="$env:TEMP\Start-Menu-Organizer"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Start-Menu-Organizer $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\StartMenuOrganizerPro.ps1"PathForge -- Filesystem repair, stubborn file deletion, path management ⬇ Download
$d="$env:TEMP\PathForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PathForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\PathForge.ps1"MonitorControl ⭐1 -- Control monitor settings via DDC/CI ⬇ Download
$d="$env:TEMP\MonitorControl"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/MonitorControl $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\MonitorControlPro.ps1"WallBrand -- Wallpaper branding tool with GUI and CLI modes
$d="$env:TEMP\WallBrand"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/WallBrand $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\WallBrandPro.ps1"VoidTools-Everything-Settings-Manager -- GUI for managing VoidTools Everything settings, INI editing, CSV filter/bookmark management
$d="$env:TEMP\VoidTools-Everything-Settings-Manager"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/VoidTools-Everything-Settings-Manager $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\EverythingSettingsManager.ps1"PfblockerngManager -- GUI for managing pfBlockerNG on pfSense firewalls
$d="$env:TEMP\PfblockerngManager"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PfblockerngManager $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\pfBlockerNG-Manager.ps1"npp-sc-scanner -- Detect and remediate Notepad++ supply chain attack IOCs ⬇ Download
$d="$env:TEMP\npp-sc-scanner"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/npp-sc-scanner $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NppScanner-GUI.ps1"JDownloader-2-Ultimate-Manager -- Comprehensive automation for JDownloader 2 ⬇ Download
$d="$env:TEMP\JDownloader-2-Ultimate-Manager"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/JDownloader-2-Ultimate-Manager $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\JDownloader 2 Ultimate Manager.ps1"ThankYouJeffrey -- A tribute to the creator of PowerShell, Jeffrey Snover
$d="$env:TEMP\ThankYouJeffrey"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/ThankYouJeffrey $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\ThankYouJeffrey.ps1"EXTRACTORX ⭐1 -- Open-source bulk archive extraction tool for Windows ⬇ Download
$d="$env:TEMP\EXTRACTORX"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/EXTRACTORX $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\ExtractorX.ps1"AdapterLock -- Per-adapter IP lockdown for Windows -- WPF GUI, CLI mode, policy export, and event-log auditing
$d="$env:TEMP\AdapterLock"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/AdapterLock $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\AdapterLock.ps1"Brave-Portable-Updater -- Update Brave inside a Portapps portable install without touching system install
$d="$env:TEMP\Brave-Portable-Updater"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Brave-Portable-Updater $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Update-BravePortable.ps1"🐍 Python Desktop Applications -- 41 repos -- Requires Python 3.8+ and Git (see First-time setup above). Each one-liner shallow-clones the repo to $env:TEMP, installs requirements.txt if present, then runs the entry script.
Start with: OpenCut, project-nomad-desktop, Tunerize.
project-nomad-desktop ⭐11 -- Offline survival command center — maps, AI chat, situation room, NukeMap, supply tracking ⬇ Download
$d="$env:TEMP\project-nomad-desktop"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/project-nomad-desktop $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\nomad.py"Tunerize ⭐1 -- Re-render any audio as chiptune (built-in NES synth) or through any SoundFont — Audio→MIDI→SF2/chiptune→WAV, locally
$d="$env:TEMP\Tunerize"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Tunerize $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\app\main.py"Vertigo ⭐1 -- Vertical video studio for short-form creators — turns raw footage into polished 9:16 for Shorts/TikTok/Reels ⬇ Download
$d="$env:TEMP\Vertigo"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Vertigo $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\vertigo.py"PromptCompanion ⭐1 -- A curated, searchable, offline library of the best AI prompts ⬇ Download
$d="$env:TEMP\PromptCompanion"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PromptCompanion $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\promptcompanion.py"SunoJump ⭐3 -- Audio fingerprint masking for Suno AI — 10-pass pipeline, PyQt6 GUI, batch processing ⬇ Download
$d="$env:TEMP\SunoJump"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SunoJump $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\sunojump.py"PyWall -- Real-time Windows Firewall manager and network monitor ⬇ Download
$d="$env:TEMP\PyWall"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PyWall $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\PyWall.py"HostsGuard -- Real-time network privacy manager — DNS monitoring, hosts file management, firewall rules ⬇ Download
$d="$env:TEMP\HostsGuard"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/HostsGuard $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\HostsGuard.py"PyShop ⭐2 -- Open source Photoshop alternative
$d="$env:TEMP\PyShop"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PyShop $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\pyshop_image_editor.py"SwiftShot -- Debloated, Greenshot-inspired screenshot tool ⬇ Download
$d="$env:TEMP\SwiftShot"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SwiftShot $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\App\Install-SwiftShot.ps1"Flux -- Privacy-focused BitTorrent client — PyQt6 + libtorrent
$d="$env:TEMP\Flux"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Flux $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\flux-torrent\Launch-Flux.ps1"GitForge -- Full GitHub repo manager — clone, sync, diff, manage ⬇ Download
$d="$env:TEMP\GitForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/GitForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\gitforge.py"UniFile ⭐2 -- AI-powered unified file organization — 5 engines, tag-based library, LLM integration ⬇ Download
$d="$env:TEMP\UniFile"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/UniFile $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\run.py"QuickFind ⭐1 -- Lightning-fast file search for Windows — reads NTFS MFT directly ⬇ Download
$d="$env:TEMP\QuickFind"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/QuickFind $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\quickfind.py"FileOrganizer ⭐1 -- AI-powered desktop tool for classifying and organizing design asset folders ⬇ Download
$d="$env:TEMP\FileOrganizer"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FileOrganizer $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\run.py"HEICShift ⭐1 -- High-performance HEIC/HEIF batch converter with PyQt6 GUI, parallel conversion, metadata preservation ⬇ Download
$d="$env:TEMP\HEICShift"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/HEICShift $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\heicshift.py"FrameSnap -- Browse MP4 videos, mark frames visually, and export precise screenshots ⬇ Download
$d="$env:TEMP\FrameSnap"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FrameSnap $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\framesnap.py"ExplorerTweaks ⭐1 -- GUI for toggling 50+ Windows File Explorer registry settings with live preview ⬇ Download
$d="$env:TEMP\ExplorerTweaks"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/ExplorerTweaks $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\explorer_tweaks.py"FaceSlim ⭐2 -- AI face slimming, reshaping, and beautification with real-time preview and GPU acceleration
$d="$env:TEMP\FaceSlim"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FaceSlim $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\FaceSlim.py"LipSight -- AI-powered lip reading tool — transcribes speech from silent video ⬇ Download
$d="$env:TEMP\LipSight"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/LipSight $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\LipSight.py"LlamaLink -- Sleek GUI frontend for llama.cpp — search, download, and chat with local LLMs ⬇ Download
$d="$env:TEMP\LlamaLink"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/LlamaLink $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\llamalink.py"SlunderStudio ⭐3 -- Offline AI music generation suite — song creation, lyrics, MIDI, vocals, stem separation, mastering ⬇ Download
$d="$env:TEMP\SlunderStudio"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SlunderStudio $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\main.py"GmailDownloader -- Full Gmail mailbox downloader, AI-powered organizer & analytics suite ⬇ Download
$d="$env:TEMP\GmailDownloader"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/GmailDownloader $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\gmaildownloader.py"UniversalCompiler -- All-in-one script-to-EXE compiler
$d="$env:TEMP\UniversalCompiler"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/UniversalCompiler $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\UniversalCompiler.ps1"OpenCut ⭐17 -- AI-powered video editing automation for Premiere Pro — caption generation, audio processing, VFX ⬇ Download
$d="$env:TEMP\OpenCut"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/OpenCut $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Install.ps1"bypassnroGen -- Generate Windows 11 OOBE bypass files ⬇ Download
$d="$env:TEMP\bypassnroGen"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/bypassnroGen $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\BypassNRO_Generator.py"MSStoreHelper ⭐3 -- Install Microsoft Store apps without the Store ⬇ Download
$d="$env:TEMP\MSStoreHelper"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/MSStoreHelper $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\MSStoreHelper.py"Qwen3-TTS-Studio -- AI voice generator powered by Qwen3-TTS ⬇ Download
$d="$env:TEMP\Qwen3-TTS-Studio"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Qwen3-TTS-Studio $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\qwen3_tts_studio.py"AppList ⭐1 -- Scan, catalog, and export all installed applications ⬇ Download
$d="$env:TEMP\AppList"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/AppList $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\AppList.py"PillSleepTracker -- Floating widget for medication tracking + sleep analytics
$d="$env:TEMP\PillSleepTracker"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PillSleepTracker $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Launch-PillSleepTracker.ps1"Mattpad -- Minimal notepad built for personal workflow ⬇ Download
$d="$env:TEMP\Mattpad"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Mattpad $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\mattpad.py"HostsFileGet -- GUI for managing the Windows hosts file ⬇ Download
$d="$env:TEMP\HostsFileGet"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/HostsFileGet $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\PythonLauncher.ps1"Bookmark-Organizer-Pro ⭐2 -- AI-powered bookmark manager and categorizer ⬇ Download
$d="$env:TEMP\Bookmark-Organizer-Pro"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Bookmark-Organizer-Pro $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\main.py"QR-Code-Generator-Pro -- QR generator with 98 visual style presets ⬇ Download
$d="$env:TEMP\QR-Code-Generator-Pro"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/QR-Code-Generator-Pro $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\qr_code_generator_pro_v7.py"uBlock-Stylus-Converter -- Convert uBlock cosmetic filters to Stylus CSS ⬇ Download
$d="$env:TEMP\uBlock-Stylus-Converter"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/uBlock-Stylus-Converter $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\ublocktoCSS.py"KeepSyncNotes ⭐1 -- Google Keep importer and note tracker ⬇ Download
$d="$env:TEMP\KeepSyncNotes"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/KeepSyncNotes $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\keepsync_notes.py"PDFedit -- Simple PDF editor ⬇ Download
$d="$env:TEMP\PDFedit"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PDFedit $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\PDFedit.py"CSV_Power_Tool -- Bulk CSV processing and consolidation
$d="$env:TEMP\CSV_Power_Tool"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/CSV_Power_Tool $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\CSV_Consolidator.py"AI-Model-Compass -- Discover, download, and run local AI models tailored to your hardware ⬇ Download
$d="$env:TEMP\AI-Model-Compass"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/AI-Model-Compass $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\ai_model_compass.py"Stock-Video-Collector -- Stock video collector ⬇ Download
$d="$env:TEMP\Stock-Video-Collector"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Stock-Video-Collector $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\artlist_scraper.py"GifText ⭐1 -- Animated GIF text editor for meme creation ⬇ Download
$d="$env:TEMP\GifText"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/GifText $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\GifText.py"FoxPort -- Migrate passwords, bookmarks, and extensions from Chromium browsers to Firefox ⬇ ZIP
🌐 Web Applications -- 27 repos -- Click to open in browser, no install needed.
Start with: Openshop, StormviewRadar, SkyTrack.
| Project | Description | Live |
|---|---|---|
| Openshop ⭐1 | Free browser-based image editor — layers, AI tools, PSD import | Launch |
| StormviewRadar | Open source weather radar viewer | Launch |
| SkyTrack ⭐1 | Real-time aircraft tracker — commercial, military, helicopters | Launch |
| VIPTrack | Military and VIP aircraft tracker | Launch |
| NukeMap | Nuclear weapon effects simulator — blast waves, WW3 simulation, 418 targets | Launch |
| SPECTRE | Intelligence aggregator platform | Launch |
| CoolSites | Curated directory of 470+ free tools and open source projects | Launch |
| Multistreamer | Multi-video streaming viewer with chat | Launch |
| GifStudio | Browser-based GIF creation and editing studio — 100% client-side | Launch |
| ImageForge | Open source image converter | Launch |
| ClipForge | Browser-based video editor powered by FFmpeg.wasm | Launch |
| ConvertFlow | Browser-based media converter — audio, video, image — no uploads | Launch |
| IconForge ⭐1 | Browser-based image resizer and converter | Launch |
| Base64Converter | Base64 encoding/decoding with file, text, QR code, and image support | Launch |
| ImageXpert | Multi-engine reverse image search — Google Lens, Yandex, Bing, TinEye | Launch |
| BookmarkVault | Bookmark management web app | Launch |
| Text-Filter-Editor | Text filtering and processing tool | Launch |
| kindred | Compatibility-first dating and social platform | Repo |
| DeGoogler | Turnkey migration toolkit for leaving Google services | Launch |
| SearchHub | Search 538 engines across 29 categories | Launch |
| UserScriptHunt ⭐3 | Unified search engine for userscripts | Launch |
| MHTMLens | MHTML file viewer and inspector | Launch |
| LogLens | Log file viewer and analyzer | Launch |
| CronScope | Cron expression builder and visualizer | Launch |
| NATO_PHONETIC_TRAINING | NATO phonetic alphabet training app | Launch |
| HurricaneMap | Interactive map of every U.S. hurricane landfall (1851–present) — NOAA HURDAT2 | Launch |
| ApocalypseWatch | Realtime business-jet tracker dashboard vs. 24h baseline | Launch |
🧩 Browser Extensions & Userscripts -- 23 repos -- Requires Tampermonkey or Violentmonkey.
Start with: Astra-Deck, ScriptVault, AmazonEnhanced.
| Project | Description | Install |
|---|---|---|
| Astra-Deck ⭐9 | Premium YouTube enhancement extension — 150+ features for Chrome & Firefox | ⬇ CRX/XPI |
| ScriptVault ⭐3 | Open-source Chrome MV3 userscript manager — Monaco editor, 35+ GM APIs | ⬇ CRX |
| AmazonEnhanced | Chrome MV3 Amazon UX cleanup — dark theme, sponsored-result removal, review-quality scoring, 20 locales | ⬇ CRX |
| StyleKit | CSS customization extension — visual editor for any website | ⬇ CRX |
| Vantage ⭐1 | New tab dashboard for Chromium — customizable search, RSS, news, weather, quick links | ⬇ CRX/XPI |
| YoutubeAdblock ⭐2 | Undetectable YouTube ad blocker with proxy engine | Install |
| Claude-Ultimate-Enhancer | All-in-one Claude.ai enhancement suite — themes, usage monitor, prompt library | Install |
| ClearGem | Removes visible watermarks from Google Gemini AI-generated images | Install |
| Chapterizer | Auto-generate YouTube chapters, detect filler words, skip pauses | Install |
| MediaDL | Media downloader userscript | Install |
| uBlockVanced ⭐1 | uBlock Origin fork with Catppuccin Mocha and Element Forge panel | ⬇ CRX |
| BackgroundSearch | Chrome extension — force background tabs + context menu search | Repo |
| StyleCraft ⭐1 | Full-featured CSS style editor and manager — Chrome extension | ⬇ ZIP |
| UserScript-Finder ⭐3 | Discover userscripts for any website | Install |
| NDNS | NextDNS control panel userscript | Repo |
| Reddit-Enhancement-Continued | Enhancement suite for old.reddit.com | Install |
| Doordash-Enhanced | DoorDash dark mode and feature enhancements | Install |
| DarkModer | Dark Reader as a userscript | Install |
| GeminiBuddy ⭐1 | Productivity features for Gemini | Install |
| RumbleX | Comprehensive Rumble.com enhancement | ⬇ CRX |
| Discrub | Discord message editor, deleter, and exporter | ⬇ CRX |
| AI-Usage_Tracker | Usage-limit countdowns and notifications for AI chat tools -- Chrome, Firefox, and userscript builds | ⬇ ZIP/XPI |
| IMDb_Enhanced | IMDb enhancement userscript | Install |
📱 Android Applications -- 19 repos -- Kotlin / Material You
Start with: ZeusWatch, NovaCut, HostShield.
| Project | Description | Download |
|---|---|---|
| ZeusWatch ⭐6 | Premium dark weather app — no API keys required | ⬇ APK |
| NovaCut ⭐10 | Professional video editor — 40+ effects, 37 transitions, 29 engines | ⬇ APK |
| HostShield ⭐7 | AMOLED-dark hosts-based ad blocker — inspired by AdAway | ⬇ APK |
| Aura ⭐5 | Open-source Zedge alternative — wallpapers, video wallpapers, ringtones, YouTube integration | ⬇ APK |
| iOSIconPack ⭐2 | iOS-style icon pack for Android — 6 iOS eras | ⬇ APK |
| Lawnchair-Lite ⭐3 | Lightweight launcher with 5 built-in dark themes | ⬇ APK |
| AlarmClockXtreme ⭐5 | Feature-rich alarm clock with dismiss challenges | ⬇ APK |
| AppManagerNG ⭐17 | Power-user package manager — continuation of MuntashirAkon/AppManager (GPL-3.0-or-later) | Repo |
| CallShield ⭐2 | Spam call and text blocker — GitHub-hosted spam database, no API keys, no subscriptions | ⬇ APK |
| FileExplorer ⭐2 | Full-featured file manager with root access, archive support, cloud storage | Repo |
| LocalAndroidStore ⭐1 | Personal Android-app catalog sourced from GitHub Releases — Android sibling of LocalChromeStore | ⬇ APK |
| one-ui-home-clone ⭐2 | Samsung One UI 7 parity launcher — Compose, clone not a port | ⬇ APK |
| SnapCrop ⭐1 | Screenshot editor — ML Kit autocrop, 14 draw tools, collage, device mockup | ⬇ APK |
| BillMinder | Bill tracker with alarm-style reminders | ⬇ APK |
| OpenSwift ⭐2 | SwiftKey-inspired Android keyboard — glide typing, prediction, themes, clipboard | Repo |
| SwiftFloris ⭐3 | SwiftKey-inspired keyboard built on FlorisBoard's foundation | Repo |
| OpenTasker ⭐3 | FOSS Tasker alternative for Android | Repo |
| OpenLumen ⭐2 | Open-source CF.Lumen successor -- root-grade display color filter for Android with rootless fallback | ⬇ APK |
| Droidsmith | Cross-platform ADB GUI for managing Android devices over USB/WiFi (Rust) | ⬇ EXE |
🔒 Security & Networking -- 4 repos
Start with: pfSenseSuite, WolfPack, BetterNext.
| Project | Description | Download |
|---|---|---|
| pfSenseSuite ⭐2 | pfSense scripts and customizations toolkit | Repo |
| WolfPack | Custom LibreWolf portable distribution | ⬇ EXE |
| BetterNext | Enhanced NextDNS Control Panel | Repo |
| ESET ⭐1 | Complete ESET port and address reference lists | Repo |
🎬 Media & Conversion Tools -- 6 repos
Start with: VideoSubtitleRemover, VideoCrush, AlphaCut.
VideoCrush -- Video compression and processing ⬇ Download
$d="$env:TEMP\VideoCrush"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/VideoCrush $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\video_compressor.py"AlphaCut ⭐1 -- Video background removal and compositing ⬇ Download
$d="$env:TEMP\AlphaCut"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/AlphaCut $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\AlphaCut.py"yt_livestream_downloader -- Download livestreams while they're still live ⬇ Download
$d="$env:TEMP\yt_livestream_downloader"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/yt_livestream_downloader $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\yt_livestream_downloader.py"MediaForge -- Multi-format media converter ⬇ Download
$d="$env:TEMP\MediaForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/MediaForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\MediaForge.py"VideoSubtitleRemover ⭐15 -- Remove hardcoded subtitles from video ⬇ Download
$d="$env:TEMP\VideoSubtitleRemover"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/VideoSubtitleRemover $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\VideoSubtitleRemover.py"StreamKeep ⭐1 -- Multi-platform stream/VOD downloader with built-in media converter ⬇ Download
$d="$env:TEMP\StreamKeep"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/StreamKeep $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\StreamKeep.py"🖥️ Native Desktop Applications -- 17 repos
Start with: MyPortfolio, LocalChromeStore, LocalDesktopStore.
| Project | Description | Language | Download |
|---|---|---|---|
| MyPortfolio ⭐1 | One Windows desktop catalog for every app I ship — binaries, extensions, APKs from GitHub releases | C# | ⬇ ZIP |
| LocalChromeStore ⭐1 | Personal Chromium extension store sourced from GitHub releases — one-click install/uninstall | C# | ⬇ ZIP |
| LocalDesktopStore ⭐1 | Private catalog for Windows desktop apps — MSI/Inno/NSIS/ZIP from GitHub releases | C# | ⬇ ZIP |
| Images ⭐2 | Dark-mode Windows 7 Classic Photo Viewer with live inline rename-while-viewing | C# | ⬇ EXE |
| DeepPurge ⭐3 | Thorough Windows uninstaller — removes programs completely, hunts down every leftover | C# | ⬇ EXE |
| Scour | High-performance disk cleanup — 12 scanner types, NTFS MFT reading | C# | Repo |
| UniversalConverterX ⭐1 | Native Windows file converter with context menu integration — 1000+ formats | C# | Repo |
| Devicer | Unified Windows toolkit for rooted Android — identify, ROM search, partition backup, boot.img patch, flashing | C# | Repo |
| Snapture | All-in-one screenshot utility — region/window/fullscreen, pinned overlays, no telemetry | C# | Repo |
| OrganizeContacts | Local-first contact organizer and deduper — native Windows, no cloud upload | C# | Repo |
| qBittorrent-Vanced | Customized BitTorrent client with dark theme | C++ | ⬇ EXE |
| PhoneFork | Dual-Samsung Android migration tool for Windows -- apps, media, settings, Wi-Fi, roles, and debloat profiles | C# | Repo |
| QuotaGlass | Always-visible AI usage quota widget for Windows | C# | ⬇ EXE |
| TaskCopy | Single-click clipboard snippet menu -- tray icon, global hotkey, search | C# | ⬇ ZIP |
| AndroidEmulatorPlus | Install Android SDK, manage AVDs, root with Magisk, migrate apps | C# | Repo |
| Keepr ⭐1 | Pixel-close offline-first Google Keep clone -- Tauri 2 + React + Rust + SQLite | TypeScript | ⬇ EXE |
| TsunamiSimulator ⭐1 | 3D-globe tsunami simulator -- asteroid impacts, nuclear bursts, earthquakes, landslides | Rust | ⬇ EXE |
📚 Guides & Resources -- 4 repos
Start with: AI_Realism, facebook-exit-guide, android-debloat-list.
| Project | Description |
|---|---|
| AI_Realism | Field guide for ultra-realistic AI video generation |
| facebook-exit-guide | Guide for leaving Facebook |
| android-debloat-list | Curated Android debloat list with vulnerability notes — companion to AppManagerNG |
| sysadmindoc.github.io | Personal portfolio and project showcase site hosted on GitHub Pages |
🔀 Misc & Forks -- 6 repos
Start with: octopus-factory, LTSC-MicrosoftStore, RcloneBrowser.
| Project | Description |
|---|---|
| octopus-factory ⭐1 | Recipe-driven autonomous coding pipeline for Claude Code — multi-agent build/audit/release |
| LTSC-MicrosoftStore | Add Windows Store to Win11 24H2 LTSC (fork) |
| RcloneBrowser | Cross-platform GUI for rclone (fork) |
| TabExplorer | Tabbed file manager for Windows (fork) |
| Vigil | Windows packaging for ungoogled-chromium (fork) |
| TagStudio | User-focused photo & file management system (fork) |



