Reddit Programming – Telegram
Reddit Programming
211 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
Lumi musical player - WPF
https://www.reddit.com/r/programming/comments/1oyeqln/lumi_musical_player_wpf/

<!-- SC_OFF -->Hello everyone, I want to share my new project that I have been working on for some time - Lumi musical player. This is a compact, beautiful music player that lets you listen to your favorite music simply by specifying the path to a folder. Features: Design. The design of this player is transparent, which makes it look beautiful in any theme on your PC, whether it's dark, light, or any custom theme - Lumi Player will look great everywhere. Convenience. For those who don't need many features and just want to listen to music with a beautiful design. Resources. Lumi Player does not require many resources or a powerful PC; it works great on any computer. Open Source. If you want to see how this player is written or suggest improvements, the code is available on GitHub. "" Technical details: Fully written in C# using WPF Open-source under the MIT license - I welcome your suggestions and improvements! The project supports modern MVVM design patterns <!-- SC_ON --> submitted by /u/Rywent (https://www.reddit.com/user/Rywent)
[link] (https://github.com/Rywent/Lumi-Player) [comments] (https://www.reddit.com/r/programming/comments/1oyeqln/lumi_musical_player_wpf/)
A small Python CLI that deletes half of the files in a directory
https://www.reddit.com/r/programming/comments/1oyff21/a_small_python_cli_that_deletes_half_of_the_files/

<!-- SC_OFF -->A small Python CLI that eliminates half of the files in a directory randomly. I originally built it for cleaning large test folders, then realized it’s actually useful and kind of fun. <!-- SC_ON --> submitted by /u/Ok_Researcher_6962 (https://www.reddit.com/user/Ok_Researcher_6962)
[link] (https://github.com/soldatov-ss/thanos) [comments] (https://www.reddit.com/r/programming/comments/1oyff21/a_small_python_cli_that_deletes_half_of_the_files/)
Running Java on iOS
https://www.reddit.com/r/programming/comments/1oyot0l/running_java_on_ios/

<!-- SC_OFF -->Given Apple's execution restrictions, this is an interesting approach. <!-- SC_ON --> submitted by /u/benevanstech (https://www.reddit.com/user/benevanstech)
[link] (https://www.infoq.com/news/2025/11/java-on-ios/) [comments] (https://www.reddit.com/r/programming/comments/1oyot0l/running_java_on_ios/)
Verity v1.0.0: A data layer that enforces server-as-truth and eliminates optimistic updates
https://www.reddit.com/r/programming/comments/1oyv43v/verity_v100_a_data_layer_that_enforces/

<!-- SC_OFF -->I've been working on Verity, a framework-agnostic data layer that addresses a problem I kept running into: modern frontends blur server-owned truth-state with client-owned view-state, leading to optimistic updates, flicker, and user distrust. Core Philosophy: The server is the only source of truth Truth-state (server data) ≠ View-state (client UI concerns) Server emits directives describing what changed, not how to update the DOM Key Features: Directive-driven invalidation — server decides what needs refreshing Framework-agnostic core with adapters for Alpine, React, Vue, Svelte Multi-client synchronization via SSE Level conversion planning (derive "summary" from "full" without refetching) No optimistic updates — honest loading states instead Automatic coalescing, latest-wins guards, memory management Use Cases: Best for applications where server truth matters: real-time dashboards, multi-user tools, financial/healthcare/compliance systems, operational control rooms. Why not just use TanStack Query/Apollo? Those are excellent libraries, but they encourage optimistic updates and put invalidation logic in client code. Verity puts the server in control of the invalidation contract and refuses to lie to users about state. Examples included: The repo contains full-stack examples in multiple domains (invoice management, financial compliance, manufacturing monitoring, telehealth triage) with "baseline" versions that don't use Verity for direct comparison. Docs: https://verity.yidi.sh (https://verity.yidi.sh/) GitHub: https://github.com/YidiDev/verity License: MIT Would love to hear feedback from the community! <!-- SC_ON --> submitted by /u/yidisprei (https://www.reddit.com/user/yidisprei)
[link] (https://verity.yidi.sh/) [comments] (https://www.reddit.com/r/programming/comments/1oyv43v/verity_v100_a_data_layer_that_enforces/)