Show HN: Nallely – a modular reactive Python system for custom MIDI instruments Hi HN! I'm Vince. I built Nallely, a modular reactive Python framework for creating custom MIDI instruments by patching signal-processing modules together, like a modular synthesizer for controls systems. Nallely focuses on real-time, thread-isolated, reactive behavior, letting you experiment with emergent behaviors. Demo video: https://www.youtube.com/watch?v=rbMnKAdqAVI building a patch from scratch and hot-debugging a running instance near the end. Key features: * Visual patching interface for connecting reactive modules (neurons), * Extensible via Python API, WebSocket, and/or code generation, * Integrates any input source (MIDI, webcam, ...) to control synthesizers. # Yes, but why? Existing software/libraries that proposes MIDI manipulation are powerful but not friendly to live experimentation. They are low-level, hard to rewire on the fly, and often heavy for embedded or headless setups. I wanted ...