Reddit Programming – Telegram
Reddit Programming
212 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
Hidden software behin streaming platforms
https://www.reddit.com/r/programming/comments/1n8wxmu/hidden_software_behin_streaming_platforms/

<!-- SC_OFF -->I think these are the challenges which can be face while building a streaming system. <!-- SC_ON --> submitted by /u/spideysensetingled (https://www.reddit.com/user/spideysensetingled)
[link] (https://nextoolhub.com/2025/09/05/hidden-software-behind-streaming-platforms/) [comments] (https://www.reddit.com/r/programming/comments/1n8wxmu/hidden_software_behin_streaming_platforms/)
Building a programming language that reads like English: lessons from PlainLang
https://www.reddit.com/r/programming/comments/1n920j7/building_a_programming_language_that_reads_like/

<!-- SC_OFF -->Recently I started working on an experimental language called PlainLang, with the idea of making programming feel closer to natural conversation. Instead of symbols and punctuation, you write in full sentences like: set the greeting to "Hello World". show on screen the greeting. From a technical standpoint, there were a few interesting challenges i thought might be worth sharing here: Parsing “loose” English: Traditional parsers expect rigid grammar. PlainLang allows optional words like “the”, “a”, or “then”, so the parser had to be tolerant without losing structure. I ended up with a recursive descent parser tuned for flexibility, which was trickier than expected. Pronoun support: The language lets you use “it” to refer to the last computed result. That required carrying contextual state across statements in the runtime, a design pattern that feels simple in usage but was subtle to implement correctly. Error messages that feel human: If someone writes add 5 to score without first setting score, the runtime tries to explain it in plain terms rather than spitting out a stack trace. Writing helpful diagnostics for “English-like” code took some care. The project is still young, but it already supports variables, arithmetic, conditionals, loops, and an interactive REPL. I’d be interested in hearing from others who have tried making more “human-readable” languages what trade-offs did you find between natural syntax and precise semantics? The code is open source (MIT license) <!-- SC_ON --> submitted by /u/ionutvi (https://www.reddit.com/user/ionutvi)
[link] (https://github.com/StudioPlatforms/plain-lang) [comments] (https://www.reddit.com/r/programming/comments/1n920j7/building_a_programming_language_that_reads_like/)
Made a tutorial Python in 10 minutes for beginners (with homework)
https://www.reddit.com/r/programming/comments/1n92nbh/made_a_tutorial_python_in_10_minutes_for/

<!-- SC_OFF -->I just uploaded a short and beginner-friendly Python tutorial on YouTube where I explain the core concepts in only 10 minutes.
Perfect if you're just starting out or need a quick refresher.
Would love your feedback on whether you'd like to see more quick lessons like this. Thanks! <!-- SC_ON --> submitted by /u/Priler96 (https://www.reddit.com/user/Priler96)
[link] (https://www.youtube.com/watch?v=uBhe1Rvp4PI) [comments] (https://www.reddit.com/r/programming/comments/1n92nbh/made_a_tutorial_python_in_10_minutes_for/)
Erdus - a universal ER diagram converter: challenges in schema migration
https://www.reddit.com/r/programming/comments/1n9ahbn/erdus_a_universal_er_diagram_converter_challenges/

<!-- SC_OFF -->I’ve been working on a universal ER diagram converter and wanted to share some of the technical challenges I ran into. The project (Erdus) converts ERDPlus (old & new), SQL, and Prisma schemas bidirectionally while preserving relationships, composite foreign keys, and even diagram layout. Some interesting problems I had to solve:
- Deterministic ID generation to keep references consistent across conversions.
- Mapping composite keys and reconstructing relationships without losing integrity.
- Keeping visual positions intact when moving between formats.
- Designing an intermediate representation (IR) strict enough to support round-trip conversions. Here’s the repo if you’d like to dive into the code: https://github.com/tobiager/Erdus Curious how others have tackled similar schema conversion or migration problems. <!-- SC_ON --> submitted by /u/tobiager (https://www.reddit.com/user/tobiager)
[link] (http://github.com/tobiager/erdus) [comments] (https://www.reddit.com/r/programming/comments/1n9ahbn/erdus_a_universal_er_diagram_converter_challenges/)
I just want to know if there are more people thinking that SOLID is overrated and sometimes add unnecessary complexity
https://www.reddit.com/r/programming/comments/1n9ak7g/i_just_want_to_know_if_there_are_more_people/

<!-- SC_OFF -->I think SOLID it could be good, however try to follows strictly SOLID principles can easily become a problem. I have been working in software industry for around 15 years. I remember one time when I had to debug old code that abuse so much about using inheritance/interfaces. There was around 8 levels of inheritance/interfaces, all clases are almos empty with only skeleton just to support next class, at the end the source file that made the magic was only a simple division, something like double myVal=a/b; I'm pretty sure that was donde because original team did it just to "prepare" code for the future, but the truth is that only brings more problem that solutions <!-- SC_ON --> submitted by /u/-WhiteMouse- (https://www.reddit.com/user/-WhiteMouse-)
[link] (https://dannorth.net/blog/cupid-the-back-story/) [comments] (https://www.reddit.com/r/programming/comments/1n9ak7g/i_just_want_to_know_if_there_are_more_people/)
Business Rules In Database Movement
https://www.reddit.com/r/programming/comments/1n9z7fb/business_rules_in_database_movement/

<!-- SC_OFF -->Did you know that there was an entire movement in software development, complete with its own manifesto, thought leaders, and everything, dedicated almost exclusively to putting business logic in SQL databases? Neither did I. So I did some research to create a post, and it turned out to be an entire article that digs into this movement a little bit deeper. I hope you like it. It is important to know history. <!-- SC_ON --> submitted by /u/vbilopav89 (https://www.reddit.com/user/vbilopav89)
[link] (https://medium.com/@vbilopav/business-rules-in-database-movement-e0167dba19b7) [comments] (https://www.reddit.com/r/programming/comments/1n9z7fb/business_rules_in_database_movement/)