When Docker Almost Died: Exploring Container Alternatives
https://www.reddit.com/r/programming/comments/1n776d4/when_docker_almost_died_exploring_container/
submitted by /u/soap94 (https://www.reddit.com/user/soap94)
[link] (https://wcff.bearblog.dev/when-docker-almost-died-exploring-container-alternatives/) [comments] (https://www.reddit.com/r/programming/comments/1n776d4/when_docker_almost_died_exploring_container/)
https://www.reddit.com/r/programming/comments/1n776d4/when_docker_almost_died_exploring_container/
submitted by /u/soap94 (https://www.reddit.com/user/soap94)
[link] (https://wcff.bearblog.dev/when-docker-almost-died-exploring-container-alternatives/) [comments] (https://www.reddit.com/r/programming/comments/1n776d4/when_docker_almost_died_exploring_container/)
Most Popular Programming Languages 2001-2025
https://www.reddit.com/r/programming/comments/1n793x7/most_popular_programming_languages_20012025/
submitted by /u/Shubham0420 (https://www.reddit.com/user/Shubham0420)
[link] (https://youtu.be/thS_VY-rNdg) [comments] (https://www.reddit.com/r/programming/comments/1n793x7/most_popular_programming_languages_20012025/)
https://www.reddit.com/r/programming/comments/1n793x7/most_popular_programming_languages_20012025/
submitted by /u/Shubham0420 (https://www.reddit.com/user/Shubham0420)
[link] (https://youtu.be/thS_VY-rNdg) [comments] (https://www.reddit.com/r/programming/comments/1n793x7/most_popular_programming_languages_20012025/)
Code Review Guidelines ✅ What Authors and Reviewers Should Actually Do?
https://www.reddit.com/r/programming/comments/1n79zpl/code_review_guidelines_what_authors_and_reviewers/
submitted by /u/pepincho (https://www.reddit.com/user/pepincho)
[link] (https://thetshaped.dev/p/code-review-guidelines-for-authors-and-reviewers-quality-code-reviews) [comments] (https://www.reddit.com/r/programming/comments/1n79zpl/code_review_guidelines_what_authors_and_reviewers/)
https://www.reddit.com/r/programming/comments/1n79zpl/code_review_guidelines_what_authors_and_reviewers/
submitted by /u/pepincho (https://www.reddit.com/user/pepincho)
[link] (https://thetshaped.dev/p/code-review-guidelines-for-authors-and-reviewers-quality-code-reviews) [comments] (https://www.reddit.com/r/programming/comments/1n79zpl/code_review_guidelines_what_authors_and_reviewers/)
Video Game Blurs (and how the best one works)
https://www.reddit.com/r/programming/comments/1n7c780/video_game_blurs_and_how_the_best_one_works/
submitted by /u/Frost-Kiwi (https://www.reddit.com/user/Frost-Kiwi)
[link] (https://blog.frost.kiwi/dual-kawase/) [comments] (https://www.reddit.com/r/programming/comments/1n7c780/video_game_blurs_and_how_the_best_one_works/)
https://www.reddit.com/r/programming/comments/1n7c780/video_game_blurs_and_how_the_best_one_works/
submitted by /u/Frost-Kiwi (https://www.reddit.com/user/Frost-Kiwi)
[link] (https://blog.frost.kiwi/dual-kawase/) [comments] (https://www.reddit.com/r/programming/comments/1n7c780/video_game_blurs_and_how_the_best_one_works/)
Applying Functional Programming to a Complex Domain: A Practical Game Engine PoC
https://www.reddit.com/r/programming/comments/1n7eckc/applying_functional_programming_to_a_complex/
<!-- SC_OFF -->Hey r/programming (https://www.reddit.com/r/programming), As a front-end developer with a background in the JavaScript, React, and Redux ecosystem, I've always been intrigued by the idea of applying FP to a complex, real-world domain. Even though JavaScript is a multi-paradigm language, I've been leveraging its functional features to build a game engine as a side project, and I'm happy with the results so far so I wanted to share them with the community and gather some feedback. What I've found is that FP's core principles make it surprisingly straightforward to implement the architectural features that modern, high-performance game engines rely on. The Perks I Found I was able to naturally implement these core architectural features with FP: Data-Oriented Programming: My entire game state is a single, immutable JavaScript object. This gives me a "single source of truth," which is a perfect fit for the data-oriented design paradigm. Entity-Component-System Architecture: Each entity is a plain data object, and its behavior is defined by composing pure functions. This feels incredibly natural and avoids the boilerplate of classes. Composition Over Inheritance: My engine uses a decorator pattern to compose behaviors on the fly, which is far more flexible than relying on rigid class hierarchies. And all of this comes with the inherent benefits of functional programming: Predictability: The same input always produces the same output. Testability: Pure functions are easy to test in isolation. Debuggability: I can trace state changes frame-by-frame and even enable time-travel debugging. Networkability: Multiplayer becomes easier with simple event synchronization. Performance: Immutability with structural sharing enables efficient rendering and change detection. I've created a PoC, and I'm really enjoying the process. Here is the link to my GitHub repo: https://github.com/IngloriousCoderz/inglorious-engine. You can also find the documentation here: https://inglorious-engine.vercel.app/. So, when and where will my PoC hit a wall and tell me: "You were wrong all along, FP is not the way for game engines"? <!-- SC_ON --> submitted by /u/IngloriousCoderz (https://www.reddit.com/user/IngloriousCoderz)
[link] (https://github.com/IngloriousCoderz/inglorious-engine) [comments] (https://www.reddit.com/r/programming/comments/1n7eckc/applying_functional_programming_to_a_complex/)
https://www.reddit.com/r/programming/comments/1n7eckc/applying_functional_programming_to_a_complex/
<!-- SC_OFF -->Hey r/programming (https://www.reddit.com/r/programming), As a front-end developer with a background in the JavaScript, React, and Redux ecosystem, I've always been intrigued by the idea of applying FP to a complex, real-world domain. Even though JavaScript is a multi-paradigm language, I've been leveraging its functional features to build a game engine as a side project, and I'm happy with the results so far so I wanted to share them with the community and gather some feedback. What I've found is that FP's core principles make it surprisingly straightforward to implement the architectural features that modern, high-performance game engines rely on. The Perks I Found I was able to naturally implement these core architectural features with FP: Data-Oriented Programming: My entire game state is a single, immutable JavaScript object. This gives me a "single source of truth," which is a perfect fit for the data-oriented design paradigm. Entity-Component-System Architecture: Each entity is a plain data object, and its behavior is defined by composing pure functions. This feels incredibly natural and avoids the boilerplate of classes. Composition Over Inheritance: My engine uses a decorator pattern to compose behaviors on the fly, which is far more flexible than relying on rigid class hierarchies. And all of this comes with the inherent benefits of functional programming: Predictability: The same input always produces the same output. Testability: Pure functions are easy to test in isolation. Debuggability: I can trace state changes frame-by-frame and even enable time-travel debugging. Networkability: Multiplayer becomes easier with simple event synchronization. Performance: Immutability with structural sharing enables efficient rendering and change detection. I've created a PoC, and I'm really enjoying the process. Here is the link to my GitHub repo: https://github.com/IngloriousCoderz/inglorious-engine. You can also find the documentation here: https://inglorious-engine.vercel.app/. So, when and where will my PoC hit a wall and tell me: "You were wrong all along, FP is not the way for game engines"? <!-- SC_ON --> submitted by /u/IngloriousCoderz (https://www.reddit.com/user/IngloriousCoderz)
[link] (https://github.com/IngloriousCoderz/inglorious-engine) [comments] (https://www.reddit.com/r/programming/comments/1n7eckc/applying_functional_programming_to_a_complex/)
Writing Code Was Never The Bottleneck
https://www.reddit.com/r/programming/comments/1n7ggac/writing_code_was_never_the_bottleneck/
<!-- SC_OFF --> The actual bottlenecks were, and still are, code reviews, knowledge transfer through mentoring and pairing, testing, debugging, and the human overhead of coordination and communication. All of this wrapped inside the labyrinth of tickets, planning meetings, and agile rituals. <!-- SC_ON --> submitted by /u/thewritingwallah (https://www.reddit.com/user/thewritingwallah)
[link] (https://ordep.dev/posts/writing-code-was-never-the-bottleneck) [comments] (https://www.reddit.com/r/programming/comments/1n7ggac/writing_code_was_never_the_bottleneck/)
https://www.reddit.com/r/programming/comments/1n7ggac/writing_code_was_never_the_bottleneck/
<!-- SC_OFF --> The actual bottlenecks were, and still are, code reviews, knowledge transfer through mentoring and pairing, testing, debugging, and the human overhead of coordination and communication. All of this wrapped inside the labyrinth of tickets, planning meetings, and agile rituals. <!-- SC_ON --> submitted by /u/thewritingwallah (https://www.reddit.com/user/thewritingwallah)
[link] (https://ordep.dev/posts/writing-code-was-never-the-bottleneck) [comments] (https://www.reddit.com/r/programming/comments/1n7ggac/writing_code_was_never_the_bottleneck/)
Adding #[derive(From)] to Rust
https://www.reddit.com/r/programming/comments/1n7j5kd/adding_derivefrom_to_rust/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://kobzol.github.io/rust/2025/09/02/adding-derive-from-to-rust.html) [comments] (https://www.reddit.com/r/programming/comments/1n7j5kd/adding_derivefrom_to_rust/)
https://www.reddit.com/r/programming/comments/1n7j5kd/adding_derivefrom_to_rust/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://kobzol.github.io/rust/2025/09/02/adding-derive-from-to-rust.html) [comments] (https://www.reddit.com/r/programming/comments/1n7j5kd/adding_derivefrom_to_rust/)
Why Rewriting Emacs Is Hard
https://www.reddit.com/r/programming/comments/1n7j5wr/why_rewriting_emacs_is_hard/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://kyo.iroiro.party/en/posts/why-rewriting-emacs-is-hard/) [comments] (https://www.reddit.com/r/programming/comments/1n7j5wr/why_rewriting_emacs_is_hard/)
https://www.reddit.com/r/programming/comments/1n7j5wr/why_rewriting_emacs_is_hard/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://kyo.iroiro.party/en/posts/why-rewriting-emacs-is-hard/) [comments] (https://www.reddit.com/r/programming/comments/1n7j5wr/why_rewriting_emacs_is_hard/)
New gABI/ELF Spec Available for Public Review
https://www.reddit.com/r/programming/comments/1n7j64x/new_gabielf_spec_available_for_public_review/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://groups.google.com/g/generic-abi/c/doY6WIIPqhU/) [comments] (https://www.reddit.com/r/programming/comments/1n7j64x/new_gabielf_spec_available_for_public_review/)
https://www.reddit.com/r/programming/comments/1n7j64x/new_gabielf_spec_available_for_public_review/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://groups.google.com/g/generic-abi/c/doY6WIIPqhU/) [comments] (https://www.reddit.com/r/programming/comments/1n7j64x/new_gabielf_spec_available_for_public_review/)
Search Index in 150 Lines of Haskell
https://www.reddit.com/r/programming/comments/1n7j6c2/search_index_in_150_lines_of_haskell/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://entropicthoughts.com/search-index-150-lines-haskell) [comments] (https://www.reddit.com/r/programming/comments/1n7j6c2/search_index_in_150_lines_of_haskell/)
https://www.reddit.com/r/programming/comments/1n7j6c2/search_index_in_150_lines_of_haskell/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://entropicthoughts.com/search-index-150-lines-haskell) [comments] (https://www.reddit.com/r/programming/comments/1n7j6c2/search_index_in_150_lines_of_haskell/)
Cookie Chaos: How to bypass __Host and __Secure cookie prefixes
https://www.reddit.com/r/programming/comments/1n7j6r1/cookie_chaos_how_to_bypass_host_and_secure_cookie/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://portswigger.net/research/cookie-chaos-how-to-bypass-host-and-secure-cookie-prefixes) [comments] (https://www.reddit.com/r/programming/comments/1n7j6r1/cookie_chaos_how_to_bypass_host_and_secure_cookie/)
https://www.reddit.com/r/programming/comments/1n7j6r1/cookie_chaos_how_to_bypass_host_and_secure_cookie/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://portswigger.net/research/cookie-chaos-how-to-bypass-host-and-secure-cookie-prefixes) [comments] (https://www.reddit.com/r/programming/comments/1n7j6r1/cookie_chaos_how_to_bypass_host_and_secure_cookie/)
TPDE-LLVM: Faster LLVM -O0 Back-End
https://www.reddit.com/r/programming/comments/1n7j77f/tpdellvm_faster_llvm_o0_backend/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://discourse.llvm.org/t/tpde-llvm-10-20x-faster-llvm-o0-back-end/86664) [comments] (https://www.reddit.com/r/programming/comments/1n7j77f/tpdellvm_faster_llvm_o0_backend/)
https://www.reddit.com/r/programming/comments/1n7j77f/tpdellvm_faster_llvm_o0_backend/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://discourse.llvm.org/t/tpde-llvm-10-20x-faster-llvm-o0-back-end/86664) [comments] (https://www.reddit.com/r/programming/comments/1n7j77f/tpdellvm_faster_llvm_o0_backend/)
Computing simplified coverage polygons
https://www.reddit.com/r/programming/comments/1n7j8hl/computing_simplified_coverage_polygons/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://www.volkerkrause.eu/2025/08/30/simplified-coverage-polygons.html) [comments] (https://www.reddit.com/r/programming/comments/1n7j8hl/computing_simplified_coverage_polygons/)
https://www.reddit.com/r/programming/comments/1n7j8hl/computing_simplified_coverage_polygons/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://www.volkerkrause.eu/2025/08/30/simplified-coverage-polygons.html) [comments] (https://www.reddit.com/r/programming/comments/1n7j8hl/computing_simplified_coverage_polygons/)
Acorn and the future of theorem proving
https://www.reddit.com/r/programming/comments/1n7j8qp/acorn_and_the_future_of_theorem_proving/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://lmao.bearblog.dev/acorn-ai-proving/) [comments] (https://www.reddit.com/r/programming/comments/1n7j8qp/acorn_and_the_future_of_theorem_proving/)
https://www.reddit.com/r/programming/comments/1n7j8qp/acorn_and_the_future_of_theorem_proving/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://lmao.bearblog.dev/acorn-ai-proving/) [comments] (https://www.reddit.com/r/programming/comments/1n7j8qp/acorn_and_the_future_of_theorem_proving/)
The Anatomy of a Mach-O: Structure, Code Signing, and PAC
https://www.reddit.com/r/programming/comments/1n7j90a/the_anatomy_of_a_macho_structure_code_signing_and/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://oliviagallucci.com/the-anatomy-of-a-mach-o-structure-code-signing-and-pac/) [comments] (https://www.reddit.com/r/programming/comments/1n7j90a/the_anatomy_of_a_macho_structure_code_signing_and/)
https://www.reddit.com/r/programming/comments/1n7j90a/the_anatomy_of_a_macho_structure_code_signing_and/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://oliviagallucci.com/the-anatomy-of-a-mach-o-structure-code-signing-and-pac/) [comments] (https://www.reddit.com/r/programming/comments/1n7j90a/the_anatomy_of_a_macho_structure_code_signing_and/)
I Replaced Redis Locks with Database Atomicity and You Should Too
https://www.reddit.com/r/programming/comments/1n7kcu9/i_replaced_redis_locks_with_database_atomicity/
submitted by /u/soap94 (https://www.reddit.com/user/soap94)
[link] (https://wcff.bearblog.dev/i-replaced-redis-locks-with-database-atomicity-and-you-should-too/) [comments] (https://www.reddit.com/r/programming/comments/1n7kcu9/i_replaced_redis_locks_with_database_atomicity/)
https://www.reddit.com/r/programming/comments/1n7kcu9/i_replaced_redis_locks_with_database_atomicity/
submitted by /u/soap94 (https://www.reddit.com/user/soap94)
[link] (https://wcff.bearblog.dev/i-replaced-redis-locks-with-database-atomicity-and-you-should-too/) [comments] (https://www.reddit.com/r/programming/comments/1n7kcu9/i_replaced_redis_locks_with_database_atomicity/)
Evolution of GPU Programming: From Smart Pixels to the Backbone of an AI-driven World
https://www.reddit.com/r/programming/comments/1n7ldsa/evolution_of_gpu_programming_from_smart_pixels_to/
submitted by /u/NoVibeCoding (https://www.reddit.com/user/NoVibeCoding)
[link] (https://medium.com/data-science-collective/evolution-of-gpu-programming-8de112bd798e) [comments] (https://www.reddit.com/r/programming/comments/1n7ldsa/evolution_of_gpu_programming_from_smart_pixels_to/)
https://www.reddit.com/r/programming/comments/1n7ldsa/evolution_of_gpu_programming_from_smart_pixels_to/
submitted by /u/NoVibeCoding (https://www.reddit.com/user/NoVibeCoding)
[link] (https://medium.com/data-science-collective/evolution-of-gpu-programming-8de112bd798e) [comments] (https://www.reddit.com/r/programming/comments/1n7ldsa/evolution_of_gpu_programming_from_smart_pixels_to/)
Writing a C compiler in 500 lines of Python
https://www.reddit.com/r/programming/comments/1n7ltpo/writing_a_c_compiler_in_500_lines_of_python/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://vgel.me/posts/c500/) [comments] (https://www.reddit.com/r/programming/comments/1n7ltpo/writing_a_c_compiler_in_500_lines_of_python/)
https://www.reddit.com/r/programming/comments/1n7ltpo/writing_a_c_compiler_in_500_lines_of_python/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://vgel.me/posts/c500/) [comments] (https://www.reddit.com/r/programming/comments/1n7ltpo/writing_a_c_compiler_in_500_lines_of_python/)
Understanding Transformers Using a Minimal Example
https://www.reddit.com/r/programming/comments/1n7lu1c/understanding_transformers_using_a_minimal_example/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://rti.github.io/gptvis/) [comments] (https://www.reddit.com/r/programming/comments/1n7lu1c/understanding_transformers_using_a_minimal_example/)
https://www.reddit.com/r/programming/comments/1n7lu1c/understanding_transformers_using_a_minimal_example/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://rti.github.io/gptvis/) [comments] (https://www.reddit.com/r/programming/comments/1n7lu1c/understanding_transformers_using_a_minimal_example/)
Microsoft Releases Historic 6502 Basic
https://www.reddit.com/r/programming/comments/1n7luaa/microsoft_releases_historic_6502_basic/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://github.com/microsoft/BASIC-M6502) [comments] (https://www.reddit.com/r/programming/comments/1n7luaa/microsoft_releases_historic_6502_basic/)
https://www.reddit.com/r/programming/comments/1n7luaa/microsoft_releases_historic_6502_basic/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://github.com/microsoft/BASIC-M6502) [comments] (https://www.reddit.com/r/programming/comments/1n7luaa/microsoft_releases_historic_6502_basic/)
Poor man's bitemporal data system in SQLite and Clojure
https://www.reddit.com/r/programming/comments/1n7luma/poor_mans_bitemporal_data_system_in_sqlite_and/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://www.evalapply.org/posts/poor-mans-time-oriented-data-system/index.html) [comments] (https://www.reddit.com/r/programming/comments/1n7luma/poor_mans_bitemporal_data_system_in_sqlite_and/)
https://www.reddit.com/r/programming/comments/1n7luma/poor_mans_bitemporal_data_system_in_sqlite_and/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://www.evalapply.org/posts/poor-mans-time-oriented-data-system/index.html) [comments] (https://www.reddit.com/r/programming/comments/1n7luma/poor_mans_bitemporal_data_system_in_sqlite_and/)