F-35 Fighter Jet’s C++ Coding Standards
https://www.reddit.com/r/programming/comments/1pgq8vc/f35_fighter_jets_c_coding_standards/
submitted by /u/azhenley (https://www.reddit.com/user/azhenley)
[link] (https://www.stroustrup.com/JSF-AV-rules.pdf) [comments] (https://www.reddit.com/r/programming/comments/1pgq8vc/f35_fighter_jets_c_coding_standards/)
https://www.reddit.com/r/programming/comments/1pgq8vc/f35_fighter_jets_c_coding_standards/
submitted by /u/azhenley (https://www.reddit.com/user/azhenley)
[link] (https://www.stroustrup.com/JSF-AV-rules.pdf) [comments] (https://www.reddit.com/r/programming/comments/1pgq8vc/f35_fighter_jets_c_coding_standards/)
Architecture Case Study: [Open Source] Platform for Research into the Foundational Physics of Open-Ended Evolution
https://www.reddit.com/r/programming/comments/1pgqac8/architecture_case_study_open_source_platform_for/
<!-- SC_OFF --> Why I am posting this: I am looking for architectural feedback and potential collaborators (System Engineering, Compiler Design, A-Life Physics) for a challenging open source research project. 1. The Mission I am building Evochora, a laboratory designed to investigate the hurdles towards Open-Ended Evolution (OEE). Landmark systems like Tierra or Avida were milestones, but the field hasn't yet cracked the code for creating truly unbounded complexity. My goal is to provide a rigorous platform to study exactly why digital evolution gets stuck and to test solutions (like thermodynamics, signaling, multi-threading, etc.) that might help us progress on one of the most profound goals in science: Understand whether the evolutionary path taken on Earth — from self-replication to multicellularity and cognition — is a unique accident or the result of a universal principle. Existing landmark A-Life systems demonstrated that code can evolve. However, they often face evolutionary stagnation. To keep simulations stable, they rely on "disembodied" logic, artificial CPU quotas, or predefined goals. I built Evochora to test the hypothesis that emergent complexity arises from embodiment and physics. For more details, here is the full scientific overview: Scientific Overview & Architecture Deep Dive (https://github.com/evochora/evochora/blob/main/docs/SCIENTIFIC_OVERVIEW.md) Comparison of Approaches: Feature Traditional A-Life (e.g. Avida) Evochora Architecture Agent Body Disembodied (CPU + Memory Buffer) Embodied (IP + Data Pointers in Spatial Grid) Interaction Limited / Message Passing Spatial (Competition for shared memory cells) Physics Fixed / Task-Specific Extensible (Pluggable Energy & Mutation models) Execution Sequential Logic Parallel & Multi-threaded (via FORK instruction) 2. The "Physics" Core: An Embodied VM The platform is architected from the ground up to serve as a flexible and high-performance testbed. Its design is guided by the principles of modularity, spatial embodiment, and extensible physics. The Conceptual Architecture of the VM: +---------------------------------------------------------------+ | Evochora "World" (n-D Molecule Grid) | | | | [ ENERGY ] [ STRUCTURE ] [ CODE ] [ DATA ] | +-------^-----------------^----------------^-------------^------+ | | | | Interaction: | | | | (HARVEST) (BLOCK) (EXECUTE) (READ) | | | | | | | | +-------|-----------------|----------------|-------------|------+ | | ORGANISM | | | | | | | | | | | +---v-----------------v----+ +----v-------------v----+ | | | Data Pointers (DPs) | | Inst. Pointer (IP) | | | | [DP 0] [DP 1] ... [DP n] |<-----| | | | +--------------------------+ +-----------------------+ | | ^ ^ | | (Move/Read/Write) (Control) | | | | | | +-------------v----------------------------------v------+ | | | Virtual Machine | | | | Registers: [DRs] [PRs] [FPRs] [LRs] (Locations) | | | | Stacks: [Data Stack] [Call Stack] [Loc. Stack] | | | | Metabolism: [Energy Register (ER)] --(Cost)--> 0 | | | +-------------------------------------------------------+ | +---------------------------------------------------------------+ Each organism executes instructions with its dedicated VM. The instructions are not linear but live as molecules in a spatial n-dimensional world. To define primordial organisms, I created a specialized assembly language (EvoASM) that is translated into machine code by the multi-pass compiler included in Evochora. The compiler supports macros, labels, and procedures, and emits the n-dimensional machine code that the VMs execute. All VMs share the same environment (basically serving as RAM), in which organisms must interact to navigate, harvest energy, and replicate to survive. Full EvoASM Language Reference
https://www.reddit.com/r/programming/comments/1pgqac8/architecture_case_study_open_source_platform_for/
<!-- SC_OFF --> Why I am posting this: I am looking for architectural feedback and potential collaborators (System Engineering, Compiler Design, A-Life Physics) for a challenging open source research project. 1. The Mission I am building Evochora, a laboratory designed to investigate the hurdles towards Open-Ended Evolution (OEE). Landmark systems like Tierra or Avida were milestones, but the field hasn't yet cracked the code for creating truly unbounded complexity. My goal is to provide a rigorous platform to study exactly why digital evolution gets stuck and to test solutions (like thermodynamics, signaling, multi-threading, etc.) that might help us progress on one of the most profound goals in science: Understand whether the evolutionary path taken on Earth — from self-replication to multicellularity and cognition — is a unique accident or the result of a universal principle. Existing landmark A-Life systems demonstrated that code can evolve. However, they often face evolutionary stagnation. To keep simulations stable, they rely on "disembodied" logic, artificial CPU quotas, or predefined goals. I built Evochora to test the hypothesis that emergent complexity arises from embodiment and physics. For more details, here is the full scientific overview: Scientific Overview & Architecture Deep Dive (https://github.com/evochora/evochora/blob/main/docs/SCIENTIFIC_OVERVIEW.md) Comparison of Approaches: Feature Traditional A-Life (e.g. Avida) Evochora Architecture Agent Body Disembodied (CPU + Memory Buffer) Embodied (IP + Data Pointers in Spatial Grid) Interaction Limited / Message Passing Spatial (Competition for shared memory cells) Physics Fixed / Task-Specific Extensible (Pluggable Energy & Mutation models) Execution Sequential Logic Parallel & Multi-threaded (via FORK instruction) 2. The "Physics" Core: An Embodied VM The platform is architected from the ground up to serve as a flexible and high-performance testbed. Its design is guided by the principles of modularity, spatial embodiment, and extensible physics. The Conceptual Architecture of the VM: +---------------------------------------------------------------+ | Evochora "World" (n-D Molecule Grid) | | | | [ ENERGY ] [ STRUCTURE ] [ CODE ] [ DATA ] | +-------^-----------------^----------------^-------------^------+ | | | | Interaction: | | | | (HARVEST) (BLOCK) (EXECUTE) (READ) | | | | | | | | +-------|-----------------|----------------|-------------|------+ | | ORGANISM | | | | | | | | | | | +---v-----------------v----+ +----v-------------v----+ | | | Data Pointers (DPs) | | Inst. Pointer (IP) | | | | [DP 0] [DP 1] ... [DP n] |<-----| | | | +--------------------------+ +-----------------------+ | | ^ ^ | | (Move/Read/Write) (Control) | | | | | | +-------------v----------------------------------v------+ | | | Virtual Machine | | | | Registers: [DRs] [PRs] [FPRs] [LRs] (Locations) | | | | Stacks: [Data Stack] [Call Stack] [Loc. Stack] | | | | Metabolism: [Energy Register (ER)] --(Cost)--> 0 | | | +-------------------------------------------------------+ | +---------------------------------------------------------------+ Each organism executes instructions with its dedicated VM. The instructions are not linear but live as molecules in a spatial n-dimensional world. To define primordial organisms, I created a specialized assembly language (EvoASM) that is translated into machine code by the multi-pass compiler included in Evochora. The compiler supports macros, labels, and procedures, and emits the n-dimensional machine code that the VMs execute. All VMs share the same environment (basically serving as RAM), in which organisms must interact to navigate, harvest energy, and replicate to survive. Full EvoASM Language Reference
(https://github.com/evochora/evochora/blob/main/docs/ASSEMBLY_SPEC.md) 3. Solving the Data Flood: Distributed Data Pipeline Simulating evolution generates a massive amount of data (>100 GB/hour for dense grids). If the physics loop waits for disk I/O, performance collapses. So the Simulation Engine is decoupled from persistence, indexing, and analytics using an asynchronous, message-driven pipeline. Data Flow Architecture: ┌────────────────────────────┐ │ SimulationEngine │ └─────────────┬──────────────┘ │ (TickData) ▼ ┌────────────────────────────┐ │ Tick Queue │ └─────────────┬──────────────┘ │ (Batches) ▼ ┌────────────────────────────┐ │ Persistence Service │ (Competing Consumers) └─┬─────────────────────┬────┘ │ (Data) (BatchInfo Event) │ │ ▼ ▼ ┌───────────┐ ┌───────────┐ │ Storage │ │ Topics │ └─────┬─────┘ └──────┬────┘ │ (Reads) (Triggers) │ │ └────────┬────────┘ │ ▼ ┌────────────────────────────┐ │ Indexer Services │ (Competing Consumer Groups) └─────────────┬──────────────┘ │ (Indexed Data) ▼ ┌────────────────────────────┐ │ Database │ └─────┬───────────────┬──────┘ │ │ (Queries) ▼ ▼ ┌────────────┐ ┌────────────┐ │ Visualizer │ │ Analyzer │ (Web based) └────────────┘ └────────────┘ 4. Project Status & Roadmap The engineering foundation is solid. We are now transitioning from "Building the Lab" to "Running the Experiments". Engineering Maturity: Component Status Feature Highlights Virtual Machine ✔ Functional Full register set, 3 stacks, dual-pointer architecture. Compiler ✔ Functional Multi-phase immutable pipeline with source-map generation. Data Pipeline ✔ Architected Decoupled architecture designed for cloud scalability. Visualizer ✔ Live WebGL-based real-time inspection of organism memory/registers. Biology ⚠️ Unstable Self-replication works, but as expected tends towards "Grey Goo" collapse. Callout I am looking for contributors who are just as thrilled as me about pushing the science of artificial life beyond the next frontiers. I need help in any kind of aspect: Engineering: Improve and extend the VM and compiler design to shape the physics of the digital world. Scale: Improve and extend the data pipeline for massive cloud scaling. Frontend: Improve and extend the existing analyzer and visualizer frontends (e.g., for controlling the data pipeline). Science: Researchers and scientists to help provide the scientific background to surpass the hurdles towards open-ended evolution. Resources: Repo: GitHub Source Code (https://github.com/evochora/evochora/blob/main/docs/SCIENTIFIC_OVERVIEW.md) Docs: Scientific Overview (https://github.com/evochora/evochora/blob/main/docs/SCIENTIFIC_OVERVIEW.md) Spec: EvoASM Reference (https://github.com/evochora/evochora/blob/main/docs/ASSEMBLY_SPEC.md) Demo: Running Demo System (http://evochora.org/) I am happy to receive any kind of feedback or questions! <!-- SC_ON --> submitted by /u/Hot-Requirement-3485 (https://www.reddit.com/user/Hot-Requirement-3485)
[link] (https://github.com/evochora/evochora/) [comments] (https://www.reddit.com/r/programming/comments/1pgqac8/architecture_case_study_open_source_platform_for/)
[link] (https://github.com/evochora/evochora/) [comments] (https://www.reddit.com/r/programming/comments/1pgqac8/architecture_case_study_open_source_platform_for/)
Dataflow Templating -- The Missing Semantic in Reactive Dataflow Programming
https://www.reddit.com/r/programming/comments/1pgsymp/dataflow_templating_the_missing_semantic_in/
<!-- SC_OFF -->Clone subgraphs on demand as an analogue to function calling. I wrote this in Observable Dataflow but it should apply to most Reactive Dataflow programming systems like FrTime. <!-- SC_ON --> submitted by /u/tlarkworthy (https://www.reddit.com/user/tlarkworthy)
[link] (https://observablehq.com/@tomlarkworthy/dataflow-templating) [comments] (https://www.reddit.com/r/programming/comments/1pgsymp/dataflow_templating_the_missing_semantic_in/)
https://www.reddit.com/r/programming/comments/1pgsymp/dataflow_templating_the_missing_semantic_in/
<!-- SC_OFF -->Clone subgraphs on demand as an analogue to function calling. I wrote this in Observable Dataflow but it should apply to most Reactive Dataflow programming systems like FrTime. <!-- SC_ON --> submitted by /u/tlarkworthy (https://www.reddit.com/user/tlarkworthy)
[link] (https://observablehq.com/@tomlarkworthy/dataflow-templating) [comments] (https://www.reddit.com/r/programming/comments/1pgsymp/dataflow_templating_the_missing_semantic_in/)
Trying to explain Google's PageRank
https://www.reddit.com/r/programming/comments/1pgtzgy/trying_to_explain_googles_pagerank/
<!-- SC_OFF -->I am trying to explain Google's Page Rank Algorithm in an easy graphical way and was looking for some feedback on if it is understandable. I am heavily inspired by 3Blue1Brown. Any feedback is greatly appreciated. <!-- SC_ON --> submitted by /u/RealSirJoe (https://www.reddit.com/user/RealSirJoe)
[link] (https://www.youtube.com/watch?v=RWEzFmxqwPQ) [comments] (https://www.reddit.com/r/programming/comments/1pgtzgy/trying_to_explain_googles_pagerank/)
https://www.reddit.com/r/programming/comments/1pgtzgy/trying_to_explain_googles_pagerank/
<!-- SC_OFF -->I am trying to explain Google's Page Rank Algorithm in an easy graphical way and was looking for some feedback on if it is understandable. I am heavily inspired by 3Blue1Brown. Any feedback is greatly appreciated. <!-- SC_ON --> submitted by /u/RealSirJoe (https://www.reddit.com/user/RealSirJoe)
[link] (https://www.youtube.com/watch?v=RWEzFmxqwPQ) [comments] (https://www.reddit.com/r/programming/comments/1pgtzgy/trying_to_explain_googles_pagerank/)
Three Systems Thinking Rules for Effective Observability
https://www.reddit.com/r/programming/comments/1pgv6by/three_systems_thinking_rules_for_effective/
submitted by /u/congolomera (https://www.reddit.com/user/congolomera)
[link] (https://thesystemistsimon.medium.com/three-systems-thinking-rules-for-effective-observability-02725cef5d7b?source=friends_link&sk=6146ba0492f0a14e503768cbff012be6) [comments] (https://www.reddit.com/r/programming/comments/1pgv6by/three_systems_thinking_rules_for_effective/)
https://www.reddit.com/r/programming/comments/1pgv6by/three_systems_thinking_rules_for_effective/
submitted by /u/congolomera (https://www.reddit.com/user/congolomera)
[link] (https://thesystemistsimon.medium.com/three-systems-thinking-rules-for-effective-observability-02725cef5d7b?source=friends_link&sk=6146ba0492f0a14e503768cbff012be6) [comments] (https://www.reddit.com/r/programming/comments/1pgv6by/three_systems_thinking_rules_for_effective/)
Server-Side Request Forgery: How it Works
https://www.reddit.com/r/programming/comments/1pgwvfu/serverside_request_forgery_how_it_works/
submitted by /u/GiraffeFire (https://www.reddit.com/user/GiraffeFire)
[link] (https://youtu.be/EWdphas_OP4) [comments] (https://www.reddit.com/r/programming/comments/1pgwvfu/serverside_request_forgery_how_it_works/)
https://www.reddit.com/r/programming/comments/1pgwvfu/serverside_request_forgery_how_it_works/
submitted by /u/GiraffeFire (https://www.reddit.com/user/GiraffeFire)
[link] (https://youtu.be/EWdphas_OP4) [comments] (https://www.reddit.com/r/programming/comments/1pgwvfu/serverside_request_forgery_how_it_works/)
MyCTiger: Use the Ring programming language for generating and building C programs (Prototype of the idea).
https://www.reddit.com/r/programming/comments/1pgx1go/myctiger_use_the_ring_programming_language_for/
<!-- SC_OFF -->MyCTiger transforms the Ring programming language into a powerful domain-specific language (DSL) for generating and building C programs. It empowers developers to enjoy the performance and efficiency of C while leveraging Ring’s expressive syntax and productivity for DSL creation. Unlike traditional approaches that embed Ring within C applications or extend the Ring VM using C code, MyCTiger reimagines Ring as a meta-language for C. This isn’t about runtime language integration—it’s about compile-time code generation. With MyCTiger, Ring becomes a high-level interface for producing C code, enabling direct injection of raw C and seamless use of existing C libraries without bindings. It is only a prototype to demonstrate the idea, so interested developers can enhance it in their own forks according to their needs, design, or vision (i.e. Keeping the current prototype simple is very important for educational purposes). <!-- SC_ON --> submitted by /u/mrpro1a1 (https://www.reddit.com/user/mrpro1a1)
[link] (https://github.com/ringpackages/myctiger) [comments] (https://www.reddit.com/r/programming/comments/1pgx1go/myctiger_use_the_ring_programming_language_for/)
https://www.reddit.com/r/programming/comments/1pgx1go/myctiger_use_the_ring_programming_language_for/
<!-- SC_OFF -->MyCTiger transforms the Ring programming language into a powerful domain-specific language (DSL) for generating and building C programs. It empowers developers to enjoy the performance and efficiency of C while leveraging Ring’s expressive syntax and productivity for DSL creation. Unlike traditional approaches that embed Ring within C applications or extend the Ring VM using C code, MyCTiger reimagines Ring as a meta-language for C. This isn’t about runtime language integration—it’s about compile-time code generation. With MyCTiger, Ring becomes a high-level interface for producing C code, enabling direct injection of raw C and seamless use of existing C libraries without bindings. It is only a prototype to demonstrate the idea, so interested developers can enhance it in their own forks according to their needs, design, or vision (i.e. Keeping the current prototype simple is very important for educational purposes). <!-- SC_ON --> submitted by /u/mrpro1a1 (https://www.reddit.com/user/mrpro1a1)
[link] (https://github.com/ringpackages/myctiger) [comments] (https://www.reddit.com/r/programming/comments/1pgx1go/myctiger_use_the_ring_programming_language_for/)
My Advice For Engineers and Engineering Leaders to Get a New Role Faster
https://www.reddit.com/r/programming/comments/1pgy4hv/my_advice_for_engineers_and_engineering_leaders/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://newsletter.eng-leadership.com/p/my-advice-for-engineers-and-engineering) [comments] (https://www.reddit.com/r/programming/comments/1pgy4hv/my_advice_for_engineers_and_engineering_leaders/)
https://www.reddit.com/r/programming/comments/1pgy4hv/my_advice_for_engineers_and_engineering_leaders/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://newsletter.eng-leadership.com/p/my-advice-for-engineers-and-engineering) [comments] (https://www.reddit.com/r/programming/comments/1pgy4hv/my_advice_for_engineers_and_engineering_leaders/)
I built a 'Learning Adapter' for MCP that cuts token usage by 80%
https://www.reddit.com/r/programming/comments/1pgyzkg/i_built_a_learning_adapter_for_mcp_that_cuts/
<!-- SC_OFF -->Hey everyone! 👋 Just wanted to share a tool I built to save on API costs. I noticed MCP servers often return huge JSON payloads with data I don't need (like avatar links), which wastes a ton of tokens. So I built a "learning adapter" that sits in the middle. It automatically figures out which fields are important and filters out the rest. It actually cut my token usage by about 80%. It's open source, and I'd really love for you to try it. If it helps you, maybe we can share the optimized schemas to help everyone save money together. Repo: https://github.com/Sivachow/mcp-learning-adapter <!-- SC_ON --> submitted by /u/Live_Case2204 (https://www.reddit.com/user/Live_Case2204)
[link] (https://github.com/Sivachow/ado-learning-adapter) [comments] (https://www.reddit.com/r/programming/comments/1pgyzkg/i_built_a_learning_adapter_for_mcp_that_cuts/)
https://www.reddit.com/r/programming/comments/1pgyzkg/i_built_a_learning_adapter_for_mcp_that_cuts/
<!-- SC_OFF -->Hey everyone! 👋 Just wanted to share a tool I built to save on API costs. I noticed MCP servers often return huge JSON payloads with data I don't need (like avatar links), which wastes a ton of tokens. So I built a "learning adapter" that sits in the middle. It automatically figures out which fields are important and filters out the rest. It actually cut my token usage by about 80%. It's open source, and I'd really love for you to try it. If it helps you, maybe we can share the optimized schemas to help everyone save money together. Repo: https://github.com/Sivachow/mcp-learning-adapter <!-- SC_ON --> submitted by /u/Live_Case2204 (https://www.reddit.com/user/Live_Case2204)
[link] (https://github.com/Sivachow/ado-learning-adapter) [comments] (https://www.reddit.com/r/programming/comments/1pgyzkg/i_built_a_learning_adapter_for_mcp_that_cuts/)
Button effect hover
https://www.reddit.com/r/programming/comments/1pgzlme/button_effect_hover/
<!-- SC_OFF -->HTML and CSS <!-- SC_ON --> submitted by /u/Allito1 (https://www.reddit.com/user/Allito1)
[link] (https://youtube.com/shorts/QN-d2MRybkw?feature=share) [comments] (https://www.reddit.com/r/programming/comments/1pgzlme/button_effect_hover/)
https://www.reddit.com/r/programming/comments/1pgzlme/button_effect_hover/
<!-- SC_OFF -->HTML and CSS <!-- SC_ON --> submitted by /u/Allito1 (https://www.reddit.com/user/Allito1)
[link] (https://youtube.com/shorts/QN-d2MRybkw?feature=share) [comments] (https://www.reddit.com/r/programming/comments/1pgzlme/button_effect_hover/)
Resistance is Not Futile: How to Fight Back
https://www.reddit.com/r/programming/comments/1ph426e/resistance_is_not_futile_how_to_fight_back/
<!-- SC_OFF -->I'm a programmer. I enjoy programming because it stimulates my mind and it is rewarding (emotionally and financially). However, in the past few years, I feel everywhere I look, people are saying my vocation is about to be obsolete. I understand most of it is hype and propaganda, but it still causes negative thoughts and feelings. I propose we fight back. We can fight back against AI, by purposefully write bad code / programming solutions on the internet. Contaminate the training data AI uses. Accelerate the dead internet theory, which will deteriorate AI's training data over time. This will make AI generated coding unreliable and AI unable to replace human programmers. <!-- SC_ON --> submitted by /u/DelAbbot (https://www.reddit.com/user/DelAbbot)
[link] (https://stackoverflow.com/) [comments] (https://www.reddit.com/r/programming/comments/1ph426e/resistance_is_not_futile_how_to_fight_back/)
https://www.reddit.com/r/programming/comments/1ph426e/resistance_is_not_futile_how_to_fight_back/
<!-- SC_OFF -->I'm a programmer. I enjoy programming because it stimulates my mind and it is rewarding (emotionally and financially). However, in the past few years, I feel everywhere I look, people are saying my vocation is about to be obsolete. I understand most of it is hype and propaganda, but it still causes negative thoughts and feelings. I propose we fight back. We can fight back against AI, by purposefully write bad code / programming solutions on the internet. Contaminate the training data AI uses. Accelerate the dead internet theory, which will deteriorate AI's training data over time. This will make AI generated coding unreliable and AI unable to replace human programmers. <!-- SC_ON --> submitted by /u/DelAbbot (https://www.reddit.com/user/DelAbbot)
[link] (https://stackoverflow.com/) [comments] (https://www.reddit.com/r/programming/comments/1ph426e/resistance_is_not_futile_how_to_fight_back/)
IDEsaster: A Novel Vulnerability Class in AI IDEs
https://www.reddit.com/r/programming/comments/1ph5ww7/idesaster_a_novel_vulnerability_class_in_ai_ides/
submitted by /u/Weekly-Ad7131 (https://www.reddit.com/user/Weekly-Ad7131)
[link] (https://maccarita.com/posts/idesaster/) [comments] (https://www.reddit.com/r/programming/comments/1ph5ww7/idesaster_a_novel_vulnerability_class_in_ai_ides/)
https://www.reddit.com/r/programming/comments/1ph5ww7/idesaster_a_novel_vulnerability_class_in_ai_ides/
submitted by /u/Weekly-Ad7131 (https://www.reddit.com/user/Weekly-Ad7131)
[link] (https://maccarita.com/posts/idesaster/) [comments] (https://www.reddit.com/r/programming/comments/1ph5ww7/idesaster_a_novel_vulnerability_class_in_ai_ides/)
Microservices should form a polytree
https://www.reddit.com/r/programming/comments/1ph6gus/microservices_should_form_a_polytree/
<!-- SC_OFF -->Hi, this is my company blog. Hope you like this week's post. <!-- SC_ON --> submitted by /u/mapehe808 (https://www.reddit.com/user/mapehe808)
[link] (https://bytesauna.com/post/microservices) [comments] (https://www.reddit.com/r/programming/comments/1ph6gus/microservices_should_form_a_polytree/)
https://www.reddit.com/r/programming/comments/1ph6gus/microservices_should_form_a_polytree/
<!-- SC_OFF -->Hi, this is my company blog. Hope you like this week's post. <!-- SC_ON --> submitted by /u/mapehe808 (https://www.reddit.com/user/mapehe808)
[link] (https://bytesauna.com/post/microservices) [comments] (https://www.reddit.com/r/programming/comments/1ph6gus/microservices_should_form_a_polytree/)
Checkpointing the message processing
https://www.reddit.com/r/programming/comments/1phc2xn/checkpointing_the_message_processing/
submitted by /u/Adventurous-Salt8514 (https://www.reddit.com/user/Adventurous-Salt8514)
[link] (https://event-driven.io/en/checkpointing_message_processing/) [comments] (https://www.reddit.com/r/programming/comments/1phc2xn/checkpointing_the_message_processing/)
https://www.reddit.com/r/programming/comments/1phc2xn/checkpointing_the_message_processing/
submitted by /u/Adventurous-Salt8514 (https://www.reddit.com/user/Adventurous-Salt8514)
[link] (https://event-driven.io/en/checkpointing_message_processing/) [comments] (https://www.reddit.com/r/programming/comments/1phc2xn/checkpointing_the_message_processing/)
Quantum Silicon Core Loader v0.5.9 Released - Universal Dynamic Bootstrapping & 33+ Fully-Implemented Commands
https://www.reddit.com/r/programming/comments/1phc4at/quantum_silicon_core_loader_v059_released/
submitted by /u/No-Reaction8116 (https://www.reddit.com/user/No-Reaction8116)
[link] (https://github.com/Sharif-bot-cmd/Quantum-Silicon-Core-Loader) [comments] (https://www.reddit.com/r/programming/comments/1phc4at/quantum_silicon_core_loader_v059_released/)
https://www.reddit.com/r/programming/comments/1phc4at/quantum_silicon_core_loader_v059_released/
submitted by /u/No-Reaction8116 (https://www.reddit.com/user/No-Reaction8116)
[link] (https://github.com/Sharif-bot-cmd/Quantum-Silicon-Core-Loader) [comments] (https://www.reddit.com/r/programming/comments/1phc4at/quantum_silicon_core_loader_v059_released/)
Why the Sanitizer API is just setHTML()
https://www.reddit.com/r/programming/comments/1phc4ge/why_the_sanitizer_api_is_just_sethtml/
submitted by /u/evilpies (https://www.reddit.com/user/evilpies)
[link] (https://frederikbraun.de/why-sethtml.html) [comments] (https://www.reddit.com/r/programming/comments/1phc4ge/why_the_sanitizer_api_is_just_sethtml/)
https://www.reddit.com/r/programming/comments/1phc4ge/why_the_sanitizer_api_is_just_sethtml/
submitted by /u/evilpies (https://www.reddit.com/user/evilpies)
[link] (https://frederikbraun.de/why-sethtml.html) [comments] (https://www.reddit.com/r/programming/comments/1phc4ge/why_the_sanitizer_api_is_just_sethtml/)
Using CTEs and Query Rewriting to Solve Versioning
https://www.reddit.com/r/programming/comments/1phcr73/using_ctes_and_query_rewriting_to_solve_versioning/
submitted by /u/shaberman (https://www.reddit.com/user/shaberman)
[link] (https://joist-orm.io/blog/query-rewriting-versioning/) [comments] (https://www.reddit.com/r/programming/comments/1phcr73/using_ctes_and_query_rewriting_to_solve_versioning/)
https://www.reddit.com/r/programming/comments/1phcr73/using_ctes_and_query_rewriting_to_solve_versioning/
submitted by /u/shaberman (https://www.reddit.com/user/shaberman)
[link] (https://joist-orm.io/blog/query-rewriting-versioning/) [comments] (https://www.reddit.com/r/programming/comments/1phcr73/using_ctes_and_query_rewriting_to_solve_versioning/)
Is vibe coding actually insecure? New CMU paper benchmarks vulnerabilities in agent-generated code
https://www.reddit.com/r/programming/comments/1phf2f9/is_vibe_coding_actually_insecure_new_cmu_paper/
<!-- SC_OFF -->BREAKING: CMU researchers found that “vibe coding” is insecure.
Developers are shocked.
The rest of us are shocked that anyone thought vibes counted as a security protocol. Paper: “Is Vibe Coding Safe? Benchmarking Vulnerability of Agent-Generated Code in Real-World Tasks” <!-- SC_ON --> submitted by /u/LateInstance8652 (https://www.reddit.com/user/LateInstance8652)
[link] (http://arxiv.org/abs/2512.03262) [comments] (https://www.reddit.com/r/programming/comments/1phf2f9/is_vibe_coding_actually_insecure_new_cmu_paper/)
https://www.reddit.com/r/programming/comments/1phf2f9/is_vibe_coding_actually_insecure_new_cmu_paper/
<!-- SC_OFF -->BREAKING: CMU researchers found that “vibe coding” is insecure.
Developers are shocked.
The rest of us are shocked that anyone thought vibes counted as a security protocol. Paper: “Is Vibe Coding Safe? Benchmarking Vulnerability of Agent-Generated Code in Real-World Tasks” <!-- SC_ON --> submitted by /u/LateInstance8652 (https://www.reddit.com/user/LateInstance8652)
[link] (http://arxiv.org/abs/2512.03262) [comments] (https://www.reddit.com/r/programming/comments/1phf2f9/is_vibe_coding_actually_insecure_new_cmu_paper/)
Swift for Android vs. Kotlin Multiplatform
https://www.reddit.com/r/programming/comments/1phgpm0/swift_for_android_vs_kotlin_multiplatform/
submitted by /u/jacobs-tech-tavern (https://www.reddit.com/user/jacobs-tech-tavern)
[link] (https://blog.jacobstechtavern.com/p/swift-for-android-vs-kmp) [comments] (https://www.reddit.com/r/programming/comments/1phgpm0/swift_for_android_vs_kotlin_multiplatform/)
https://www.reddit.com/r/programming/comments/1phgpm0/swift_for_android_vs_kotlin_multiplatform/
submitted by /u/jacobs-tech-tavern (https://www.reddit.com/user/jacobs-tech-tavern)
[link] (https://blog.jacobstechtavern.com/p/swift-for-android-vs-kmp) [comments] (https://www.reddit.com/r/programming/comments/1phgpm0/swift_for_android_vs_kotlin_multiplatform/)
Types of API Testing
https://www.reddit.com/r/programming/comments/1phh154/types_of_api_testing/
submitted by /u/stmoreau (https://www.reddit.com/user/stmoreau)
[link] (https://www.systemdesignbutsimple.com/p/types-of-api-testing) [comments] (https://www.reddit.com/r/programming/comments/1phh154/types_of_api_testing/)
https://www.reddit.com/r/programming/comments/1phh154/types_of_api_testing/
submitted by /u/stmoreau (https://www.reddit.com/user/stmoreau)
[link] (https://www.systemdesignbutsimple.com/p/types-of-api-testing) [comments] (https://www.reddit.com/r/programming/comments/1phh154/types_of_api_testing/)