Reddit Programming
210 subscribers
1.22K photos
124K links
I will send you newest post from subreddit /r/programming
Download Telegram
Table sorting
https://www.reddit.com/r/programming/comments/1nq05mi/table_sorting/

<!-- SC_OFF -->Yes, that simple table sorting. 10 years ago when I started my career that was the "take home" assignment. Today after trying to sort some simple values from a website I am amazed this problem was not solved yet. Just include the god damn sorting in the HTML spec and be done with it. Every table everywhere gets sort capabilities without coding. Thanks for reading my 3AM rant. <!-- SC_ON --> submitted by /u/FrostyCartoonist8523 (https://www.reddit.com/user/FrostyCartoonist8523)
[link] (https://localhost.com/) [comments] (https://www.reddit.com/r/programming/comments/1nq05mi/table_sorting/)
Create systems of equations and basic algebra app
https://www.reddit.com/r/programming/comments/1nq0tif/create_systems_of_equations_and_basic_algebra_app/

<!-- SC_OFF -->I want to create an app to 1. Use letters, Greek characters and subscripts for variable and equations. So typing “/Omega” will make Ω appear in its place. Perhaps there would be a panel of Greek characters I could click on as well 2. Input known variables 3. Input the equations apart of the system of equations 4. Automatically solve the system of equations 5. Add additional equations that will utilize the results of solving the system of equations. 6. Store equations I use over and over that I can quickly select. 7. The equations and values will need to be changeable at any point of the process I want the UI to be clean and the subscripts to actually look like subscripts when they are imputed and outputted. What language(s) should I use to create this? <!-- SC_ON --> submitted by /u/SkiMtVidGame-aineer (https://www.reddit.com/user/SkiMtVidGame-aineer)
[link] (http://thisisnotareallink.com/) [comments] (https://www.reddit.com/r/programming/comments/1nq0tif/create_systems_of_equations_and_basic_algebra_app/)
A smart way to get C++ speed for voice AI in Python: a look at the TEN framework
https://www.reddit.com/r/programming/comments/1nq11of/a_smart_way_to_get_c_speed_for_voice_ai_in_python/

<!-- SC_OFF -->We all know that getting real-time performance in Python can be tricky, especially with I/O-heavy tasks like audio streaming. I've been looking for a good way to tackle this without having to rewrite everything in C++. I recently stumbled upon the TEN framework, and its architecture is clever. It uses a high-performance C++ core for the heavy lifting but has a clean, first-class Python API. Their new v0.10 release really refines this, so you can write all your main logic in Python and let the C++ backend handle the speed-critical parts. It’s the same hybrid approach that makes libraries like NumPy so powerful. They've also built out a whole suite of tools for things like voice activity and turn detection, so you're not starting from scratch. If you're building any application where responsiveness is critical, this project is definitely worth a look. It seems like it's built by engineers who've actually faced these problems before. <!-- SC_ON --> submitted by /u/Global-Biscotti-8449 (https://www.reddit.com/user/Global-Biscotti-8449)
[link] (https://github.com/TEN-framework) [comments] (https://www.reddit.com/r/programming/comments/1nq11of/a_smart_way_to_get_c_speed_for_voice_ai_in_python/)