Reddit Programming
208 subscribers
1.22K photos
124K links
I will send you newest post from subreddit /r/programming
Download Telegram
The latest news in the React world: React Conf wrapup; React 19.2, the React Foundation, React Native removing old architecture. Next.js has too many directives
https://www.reddit.com/r/programming/comments/1oq71wd/the_latest_news_in_the_react_world_react_conf/

submitted by /u/vcarl (https://www.reddit.com/user/vcarl)
[link] (https://www.reactiflux.com/transcripts/tmir-2025-10) [comments] (https://www.reddit.com/r/programming/comments/1oq71wd/the_latest_news_in_the_react_world_react_conf/)
From Spring Boot to .NET: The Struggle
https://www.reddit.com/r/programming/comments/1oqlfik/from_spring_boot_to_net_the_struggle/

<!-- SC_OFF -->If you’ve ever switched from Spring Boot to .NET, you know… it’s not just a framework change. It’s a whole new religion. Let’s be honest — both are powerful. But when you come from the Java world of Spring Boot and suddenly land in the .NET universe, everything feels… weirdly different. Here’s my real struggle story — no sugarcoating, just developer pain 😅. My articles are open to everyone; non-member readers can read the full article by clicking this link (https://rasathuraikaran26.medium.com/from-spring-boot-to-net-the-struggle-14bf1c168ddf?sk=547e7d6f37df41b06036f5b51bbb9767) If you have any thoughts, drop a comment under my Medium article, guys! <!-- SC_ON --> submitted by /u/Rasathurai_Karan (https://www.reddit.com/user/Rasathurai_Karan)
[link] (https://rasathuraikaran26.medium.com/from-spring-boot-to-net-the-struggle-14bf1c168ddf) [comments] (https://www.reddit.com/r/programming/comments/1oqlfik/from_spring_boot_to_net_the_struggle/)
Dating app?
https://www.reddit.com/r/programming/comments/1oqoe4x/dating_app/

<!-- SC_OFF -->Hello, I am looking for a programmer who can help me expand my idea of a dating app, I cant go into detail but I really think me and my partner are on to something . link has nothing to do with this <!-- SC_ON --> submitted by /u/Entire-Desk6998 (https://www.reddit.com/user/Entire-Desk6998)
[link] (https://www.youtube.com/watch?v=7DNz25c6BRg) [comments] (https://www.reddit.com/r/programming/comments/1oqoe4x/dating_app/)
Why Counter Strike Netcode Rubber Bands You to Death
https://www.reddit.com/r/programming/comments/1oqsoar/why_counter_strike_netcode_rubber_bands_you_to/

<!-- SC_OFF -->Interesting presentation on why rubber banding happens. But as someone pointed out in the comments, the character in his mini demo should freeze completely when packet loss goes 100%. Would also be interesting to see server side rewinding methods, or comparing old cs netcode with modern netcode to see what really changed over the years. <!-- SC_ON --> submitted by /u/bulltrapking (https://www.reddit.com/user/bulltrapking)
[link] (https://youtu.be/WfxD_NwNVO4) [comments] (https://www.reddit.com/r/programming/comments/1oqsoar/why_counter_strike_netcode_rubber_bands_you_to/)
Built an AI system inspired by how bacteria make kombucha. Here's the tech stack and architecture.
https://www.reddit.com/r/programming/comments/1or51hz/built_an_ai_system_inspired_by_how_bacteria_make/

<!-- SC_OFF -->**TL;DR:** Spent months building LUCA AI - an AI architecture based on fermentation symbiosis. FastAPI + React + some weird biology-inspired patterns. Open source. Here's what I learned. **The Idea:** I'm a fermentation scientist by training (brewing, kombucha, coffee quality). Spent years watching how SCOBY cultures (bacteria + yeast) self-organize. Thought: "This is literally distributed computing that evolved over billions of years. Can we code it?" **Tech Stack:** **Backend:** - FastAPI (Python) - chose for async capabilities - Event-driven architecture (mimics chemical signaling) - Microservices pattern (each service = organism) - No centralized orchestrator (it's all emergent) **Frontend:** - React (TypeScript) - Real-time state management - Visualization of "colony" behavior **Architecture Pattern:** Instead of: ``` Request → Router → Controller → Service → Database → Response ``` We have: ``` Signal → Colony Network → Self-Organization → Emergent Response ``` Each microservice: - Operates independently - Communicates via events (like quorum sensing) - Competes for resources - Cooperates for system goals - No single point of failure **Interesting Code Challenges:** **1. Resource Allocation Without Central Control** ```python # Traditional def allocate_memory(task): central_manager.assign(task, resources) # LUCA approach def compete_for_resources(task): broadcast_need(task) listen_for_offers() negotiate_with_peers() self_assign() ``` **2. Emergent Behavior** How do you debug when behavior emerges from 100+ microservices interacting? You don't. You observe patterns and adjust rules. **3. No Traditional State Management** State is distributed. Each service has local state. Global state "emerges" from interactions. **What Worked:** - Async/await patterns map beautifully to biological processes - Event-driven architecture feels natural for this - Surprisingly resilient - services die, system adapts - Energy efficient (comparatively) **What Was Hard:** - Debugging is philosophical ("why did it do that?" → "it emerged") - Testing requires new frameworks (how do you unit test emergence?) - Documentation is weird (describing behavior vs. code) - Explaining to other devs: "No, there's no main controller" **Code Smell or Feature?** Traditional linters hate this code. "Where's your entry point?" "Why no central state?" "This violates separation of concerns!" But it works. And scales. **Open Questions:** - How do you version control emergent behavior? - CI/CD for self-organizing systems? - Monitoring when there's no single point to monitor? **Status:** - Multiple iterations completed - Reaching out to NVIDIA/AMD/Anthropic - Everything open source (will post link if allowed) **For Devs Interested in Bio-Inspired Code:** This is weird programming. It violates almost every pattern you learned. But it's fascinating. If you've ever wondered what code would look like if we designed it like nature... Happy to discuss specific technical implementations, architectural decisions, or why I chose FastAPI over alternatives. **Background:** Professional brewer → kombucha production → coffee QA → somehow building AI Also neurodivergent, which probably explains why I thought this was a good idea. AMA about the tech, the biology, or why I'm doing this instead of just using PyTorch. <!-- SC_ON --> submitted by /u/CryptographerOne6497 (https://www.reddit.com/user/CryptographerOne6497)
[link] (https://github.com/lennartwuchold-LUCA/LUCA-AI_369) [comments] (https://www.reddit.com/r/programming/comments/1or51hz/built_an_ai_system_inspired_by_how_bacteria_make/)
What makes a great developer experience? Lessons from building a VS Code extension for Postgres
https://www.reddit.com/r/programming/comments/1orbwv1/what_makes_a_great_developer_experience_lessons/

<!-- SC_OFF -->What makes a great developer experience in VS Code? And how do music, improv, and failure shape an engineer’s approach to building tools? Just published a new Talking Postgres podcast episode with Rob Emanuele (Microsoft) where we dig into both the tech and the human side of engineering. Highlights: Designing a VS Code extension for PostgreSQL: what it does and why it matters GitHub Copilot & agent mode: game-changer or distraction? Dogfooding and architectural decisions behind the extension Rob’s geospatial past: 60 PB of data, millions of rows How PyCon flipped his career path “English is my programming language” Music, improv, and failure—and how they shape DevX 🎧 Full episode: https://talkingpostgres.com/episodes/building-a-dev-experience-for-postgres-in-vs-code-with-rob-emanuele OP here (and podcast host). Curious what you think: What makes a great dev experience in your favorite editor? Have you tried Copilot or agent mode—how’s it changing your workflow? What’s one non-tech skill that’s influenced how you code? <!-- SC_ON --> submitted by /u/clairegiordano (https://www.reddit.com/user/clairegiordano)
[link] (https://talkingpostgres.com/episodes/building-a-dev-experience-for-postgres-in-vs-code-with-rob-emanuele) [comments] (https://www.reddit.com/r/programming/comments/1orbwv1/what_makes_a_great_developer_experience_lessons/)