The 10 Levels of Building a Data Grid - My 1 Year Journey of Building a Table.
https://www.reddit.com/r/programming/comments/1uyvq9x/the_10_levels_of_building_a_data_grid_my_1_year/
<!-- SC_OFF -->I wanted to make this post because man...tables are way harder than they look. I documented my 1 year journey of optimizations on a stupid table for my Database GUI. I made everything from scratch like an idiot thinking it'd be easy but oh boy was I wrong... The article goes over all the optimizations I made to make my table render data smoothly without lagging. It goes from what data structures I used and the rendering optimizations I did. I used MongoDB Compass as a baseline since they use AG-Grid for their table and I'm pretty happy that my table feels way smoother than that (In my own testing)! But yeah, I never realized that there would be so much depth in making a performant table. PS. I decided not to use AG-Grid because there were a lot of customizations that I needed to do. I wanted column expansions ( if a field as an object or an array it would open columns to the right of it ). I also wanted an embedded text search where you could search for text within non visible columns (because they were in objects or arrays ) and AG Grid didn't really support that behavior so ..yeah. Anyways have a good read! <!-- SC_ON --> submitted by /u/Fun-Chicken6946 (https://www.reddit.com/user/Fun-Chicken6946)
[link] (https://visualeaf.com/blog/the-10-levels-of-building-a-data-grid/) [comments] (https://www.reddit.com/r/programming/comments/1uyvq9x/the_10_levels_of_building_a_data_grid_my_1_year/)
https://www.reddit.com/r/programming/comments/1uyvq9x/the_10_levels_of_building_a_data_grid_my_1_year/
<!-- SC_OFF -->I wanted to make this post because man...tables are way harder than they look. I documented my 1 year journey of optimizations on a stupid table for my Database GUI. I made everything from scratch like an idiot thinking it'd be easy but oh boy was I wrong... The article goes over all the optimizations I made to make my table render data smoothly without lagging. It goes from what data structures I used and the rendering optimizations I did. I used MongoDB Compass as a baseline since they use AG-Grid for their table and I'm pretty happy that my table feels way smoother than that (In my own testing)! But yeah, I never realized that there would be so much depth in making a performant table. PS. I decided not to use AG-Grid because there were a lot of customizations that I needed to do. I wanted column expansions ( if a field as an object or an array it would open columns to the right of it ). I also wanted an embedded text search where you could search for text within non visible columns (because they were in objects or arrays ) and AG Grid didn't really support that behavior so ..yeah. Anyways have a good read! <!-- SC_ON --> submitted by /u/Fun-Chicken6946 (https://www.reddit.com/user/Fun-Chicken6946)
[link] (https://visualeaf.com/blog/the-10-levels-of-building-a-data-grid/) [comments] (https://www.reddit.com/r/programming/comments/1uyvq9x/the_10_levels_of_building_a_data_grid_my_1_year/)
On Rendering the Sky, Sunsets, and Planets
https://www.reddit.com/r/programming/comments/1uywy4t/on_rendering_the_sky_sunsets_and_planets/
submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://blog.maximeheckel.com/posts/on-rendering-the-sky-sunsets-and-planets/) [comments] (https://www.reddit.com/r/programming/comments/1uywy4t/on_rendering_the_sky_sunsets_and_planets/)
https://www.reddit.com/r/programming/comments/1uywy4t/on_rendering_the_sky_sunsets_and_planets/
submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://blog.maximeheckel.com/posts/on-rendering-the-sky-sunsets-and-planets/) [comments] (https://www.reddit.com/r/programming/comments/1uywy4t/on_rendering_the_sky_sunsets_and_planets/)
Engineering fast searches with Inverted Indexes
https://www.reddit.com/r/programming/comments/1uz7clt/engineering_fast_searches_with_inverted_indexes/
submitted by /u/Comfortable-Fan-580 (https://www.reddit.com/user/Comfortable-Fan-580)
[link] (https://pradyumnachippigiri.substack.com/p/engineering-fast-search-with-inverted) [comments] (https://www.reddit.com/r/programming/comments/1uz7clt/engineering_fast_searches_with_inverted_indexes/)
https://www.reddit.com/r/programming/comments/1uz7clt/engineering_fast_searches_with_inverted_indexes/
submitted by /u/Comfortable-Fan-580 (https://www.reddit.com/user/Comfortable-Fan-580)
[link] (https://pradyumnachippigiri.substack.com/p/engineering-fast-search-with-inverted) [comments] (https://www.reddit.com/r/programming/comments/1uz7clt/engineering_fast_searches_with_inverted_indexes/)
Making TLA+ and x86 Kiss Via Z3Py
https://www.reddit.com/r/programming/comments/1uza1nb/making_tla_and_x86_kiss_via_z3py/
submitted by /u/mttd (https://www.reddit.com/user/mttd)
[link] (https://www.philipzucker.com/kissin_tla/) [comments] (https://www.reddit.com/r/programming/comments/1uza1nb/making_tla_and_x86_kiss_via_z3py/)
https://www.reddit.com/r/programming/comments/1uza1nb/making_tla_and_x86_kiss_via_z3py/
submitted by /u/mttd (https://www.reddit.com/user/mttd)
[link] (https://www.philipzucker.com/kissin_tla/) [comments] (https://www.reddit.com/r/programming/comments/1uza1nb/making_tla_and_x86_kiss_via_z3py/)
Maintaining the code of the man who wrote "How To Write Unmaintainable Code"
https://www.reddit.com/r/programming/comments/1uzadz5/maintaining_the_code_of_the_man_who_wrote_how_to/
<!-- SC_OFF -->Today I accidentally became the maintainer of software that was already almost three decades old: reviving a 1990s Java utility to keep the last PAD submitter alive in 2026. I was looking for a way to submit my AI app RiverScript to old desktop software directories and ended up digging through the long-forgotten world of PAD files. There was one problem. The only batch submission tool I could find was a Java application that first appeared in the late 1990s. The last release was in 2017. It was written by Roedy Green of Canadian Mind Products (https://mindprod.com/) – a software developer who passed away in 2023. He spent decades writing and freely distributing Java utilities, and maintaining the widely-read Java Glossary (https://mindprod.com/jgloss/jgloss.html). Roedy Green also wrote How To Write Unmaintainable Code (https://github.com/droogans/unmaintainable-code) – a famous satirical guide about writing code nobody can maintain. So, Roedy, today the code you wrote almost three decades ago was maintained. The tool still did exactly what it was supposed to do. Thank you. It just had absolutely no idea the modern web existed. It happily produced URLs like http://https://riverscript.com instead of https://riverscript.com (https://riverscript.com/), disabled SNI globally (which was probably a perfectly reasonable workaround at some point), and couldn't cope with the fact that almost every website now redirects HTTP to HTTPS. So I dug through the legacy Java code, fixed the compatibility issues, and got it working again. I used it to submit my app to several software directories, then published the revived version on GitHub so anyone who still needs it can use it too. Maybe nobody will ever need it again. Maybe someone will. Either way, I'm happy this old thing works again. So today, the code of the man who wrote "How To Write Unmaintainable Code" is still being maintained even after he was gone. P.S. The public repository for Mini PAD Submitter 26.3 Revived – 2026 Community Fix (https://github.com/lexvalo/mini-pad-submitter-revived) is available and open to everyone. P.P.S. At the request of redditors, I also added support for using custom submission directories. In Roedy's original program, the list of 66 directories was hardcoded, and quite a few of them no longer exist. So I added a sites.txt file next to the application in the dist folder, where you can edit the list yourself – remove the ones that no longer exist and add new ones. The application simply reads the list from that file now, so you don't have to recompile anything. <!-- SC_ON --> submitted by /u/Odd-Flamingo-6211 (https://www.reddit.com/user/Odd-Flamingo-6211)
[link] (https://github.com/lexvalo/mini-pad-submitter-revived) [comments] (https://www.reddit.com/r/programming/comments/1uzadz5/maintaining_the_code_of_the_man_who_wrote_how_to/)
https://www.reddit.com/r/programming/comments/1uzadz5/maintaining_the_code_of_the_man_who_wrote_how_to/
<!-- SC_OFF -->Today I accidentally became the maintainer of software that was already almost three decades old: reviving a 1990s Java utility to keep the last PAD submitter alive in 2026. I was looking for a way to submit my AI app RiverScript to old desktop software directories and ended up digging through the long-forgotten world of PAD files. There was one problem. The only batch submission tool I could find was a Java application that first appeared in the late 1990s. The last release was in 2017. It was written by Roedy Green of Canadian Mind Products (https://mindprod.com/) – a software developer who passed away in 2023. He spent decades writing and freely distributing Java utilities, and maintaining the widely-read Java Glossary (https://mindprod.com/jgloss/jgloss.html). Roedy Green also wrote How To Write Unmaintainable Code (https://github.com/droogans/unmaintainable-code) – a famous satirical guide about writing code nobody can maintain. So, Roedy, today the code you wrote almost three decades ago was maintained. The tool still did exactly what it was supposed to do. Thank you. It just had absolutely no idea the modern web existed. It happily produced URLs like http://https://riverscript.com instead of https://riverscript.com (https://riverscript.com/), disabled SNI globally (which was probably a perfectly reasonable workaround at some point), and couldn't cope with the fact that almost every website now redirects HTTP to HTTPS. So I dug through the legacy Java code, fixed the compatibility issues, and got it working again. I used it to submit my app to several software directories, then published the revived version on GitHub so anyone who still needs it can use it too. Maybe nobody will ever need it again. Maybe someone will. Either way, I'm happy this old thing works again. So today, the code of the man who wrote "How To Write Unmaintainable Code" is still being maintained even after he was gone. P.S. The public repository for Mini PAD Submitter 26.3 Revived – 2026 Community Fix (https://github.com/lexvalo/mini-pad-submitter-revived) is available and open to everyone. P.P.S. At the request of redditors, I also added support for using custom submission directories. In Roedy's original program, the list of 66 directories was hardcoded, and quite a few of them no longer exist. So I added a sites.txt file next to the application in the dist folder, where you can edit the list yourself – remove the ones that no longer exist and add new ones. The application simply reads the list from that file now, so you don't have to recompile anything. <!-- SC_ON --> submitted by /u/Odd-Flamingo-6211 (https://www.reddit.com/user/Odd-Flamingo-6211)
[link] (https://github.com/lexvalo/mini-pad-submitter-revived) [comments] (https://www.reddit.com/r/programming/comments/1uzadz5/maintaining_the_code_of_the_man_who_wrote_how_to/)
Seed7 version 2026-07-11 released
https://www.reddit.com/r/programming/comments/1uzapht/seed7_version_20260711_released/
<!-- SC_OFF -->Seed7 is a GPL licensed open source programming language. It is given away for free and nobody from the development team gets any money from it. <!-- SC_ON --> submitted by /u/ThomasMertes (https://www.reddit.com/user/ThomasMertes)
[link] (https://www.reddit.com/r/seed7/comments/1uvbc5a/seed7_version_20260711_released_on_github_and_sf/) [comments] (https://www.reddit.com/r/programming/comments/1uzapht/seed7_version_20260711_released/)
https://www.reddit.com/r/programming/comments/1uzapht/seed7_version_20260711_released/
<!-- SC_OFF -->Seed7 is a GPL licensed open source programming language. It is given away for free and nobody from the development team gets any money from it. <!-- SC_ON --> submitted by /u/ThomasMertes (https://www.reddit.com/user/ThomasMertes)
[link] (https://www.reddit.com/r/seed7/comments/1uvbc5a/seed7_version_20260711_released_on_github_and_sf/) [comments] (https://www.reddit.com/r/programming/comments/1uzapht/seed7_version_20260711_released/)
Introducing Triton: DirectX 11 driver for QEMU
https://www.reddit.com/r/programming/comments/1v6ijz9/introducing_triton_directx_11_driver_for_qemu/
submitted by /u/NXGZ (https://www.reddit.com/user/NXGZ)
[link] (https://blog.getutm.app/2026/introducing-triton-directx-11-driver-for-qemu/) [comments] (https://www.reddit.com/r/programming/comments/1v6ijz9/introducing_triton_directx_11_driver_for_qemu/)
https://www.reddit.com/r/programming/comments/1v6ijz9/introducing_triton_directx_11_driver_for_qemu/
submitted by /u/NXGZ (https://www.reddit.com/user/NXGZ)
[link] (https://blog.getutm.app/2026/introducing-triton-directx-11-driver-for-qemu/) [comments] (https://www.reddit.com/r/programming/comments/1v6ijz9/introducing_triton_directx_11_driver_for_qemu/)
Modeling Facts and Reactions with Domain Events
https://www.reddit.com/r/programming/comments/1v6xuqc/modeling_facts_and_reactions_with_domain_events/
submitted by /u/deniskyashif (https://www.reddit.com/user/deniskyashif)
[link] (https://deniskyashif.com/2026/07/25/modeling-facts-and-reactions-with-domain-events/) [comments] (https://www.reddit.com/r/programming/comments/1v6xuqc/modeling_facts_and_reactions_with_domain_events/)
https://www.reddit.com/r/programming/comments/1v6xuqc/modeling_facts_and_reactions_with_domain_events/
submitted by /u/deniskyashif (https://www.reddit.com/user/deniskyashif)
[link] (https://deniskyashif.com/2026/07/25/modeling-facts-and-reactions-with-domain-events/) [comments] (https://www.reddit.com/r/programming/comments/1v6xuqc/modeling_facts_and_reactions_with_domain_events/)
A simple clustering algorithm for lists
https://www.reddit.com/r/programming/comments/1v7tjg5/a_simple_clustering_algorithm_for_lists/
submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://cassidoo.co/post/clustering-tiles/) [comments] (https://www.reddit.com/r/programming/comments/1v7tjg5/a_simple_clustering_algorithm_for_lists/)
https://www.reddit.com/r/programming/comments/1v7tjg5/a_simple_clustering_algorithm_for_lists/
submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://cassidoo.co/post/clustering-tiles/) [comments] (https://www.reddit.com/r/programming/comments/1v7tjg5/a_simple_clustering_algorithm_for_lists/)
Approximating Softmax for FPGAs with Taylor Series and Pade Approximants in Python
https://www.reddit.com/r/programming/comments/1v7yygj/approximating_softmax_for_fpgas_with_taylor/
submitted by /u/DataBaeBee (https://www.reddit.com/user/DataBaeBee)
[link] (https://leetarxiv.substack.com/p/approximating-softmax-for-fpgas) [comments] (https://www.reddit.com/r/programming/comments/1v7yygj/approximating_softmax_for_fpgas_with_taylor/)
https://www.reddit.com/r/programming/comments/1v7yygj/approximating_softmax_for_fpgas_with_taylor/
submitted by /u/DataBaeBee (https://www.reddit.com/user/DataBaeBee)
[link] (https://leetarxiv.substack.com/p/approximating-softmax-for-fpgas) [comments] (https://www.reddit.com/r/programming/comments/1v7yygj/approximating_softmax_for_fpgas_with_taylor/)
Writing arenas in Rust from scratch
https://www.reddit.com/r/programming/comments/1v80d8d/writing_arenas_in_rust_from_scratch/
submitted by /u/f311a (https://www.reddit.com/user/f311a)
[link] (https://rushter.com/blog/rust-memory-arenas/) [comments] (https://www.reddit.com/r/programming/comments/1v80d8d/writing_arenas_in_rust_from_scratch/)
https://www.reddit.com/r/programming/comments/1v80d8d/writing_arenas_in_rust_from_scratch/
submitted by /u/f311a (https://www.reddit.com/user/f311a)
[link] (https://rushter.com/blog/rust-memory-arenas/) [comments] (https://www.reddit.com/r/programming/comments/1v80d8d/writing_arenas_in_rust_from_scratch/)
Let the Browser Do the Math or: How I Learned to Stop Worrying and Love the DOM
https://www.reddit.com/r/programming/comments/1v833kp/let_the_browser_do_the_math_or_how_i_learned_to/
submitted by /u/oalders (https://www.reddit.com/user/oalders)
[link] (https://www.olafalders.com/2026/07/27/designing-social-cards-in-html/) [comments] (https://www.reddit.com/r/programming/comments/1v833kp/let_the_browser_do_the_math_or_how_i_learned_to/)
https://www.reddit.com/r/programming/comments/1v833kp/let_the_browser_do_the_math_or_how_i_learned_to/
submitted by /u/oalders (https://www.reddit.com/user/oalders)
[link] (https://www.olafalders.com/2026/07/27/designing-social-cards-in-html/) [comments] (https://www.reddit.com/r/programming/comments/1v833kp/let_the_browser_do_the_math_or_how_i_learned_to/)
Building a Fast Lock-Free Queue in Modern C++ From Scratch
https://www.reddit.com/r/programming/comments/1v83ukz/building_a_fast_lockfree_queue_in_modern_c_from/
submitted by /u/Dear-Economics-315 (https://www.reddit.com/user/Dear-Economics-315)
[link] (https://blog.jaysmito.dev/blog/04-fast-lockfree-queues/) [comments] (https://www.reddit.com/r/programming/comments/1v83ukz/building_a_fast_lockfree_queue_in_modern_c_from/)
https://www.reddit.com/r/programming/comments/1v83ukz/building_a_fast_lockfree_queue_in_modern_c_from/
submitted by /u/Dear-Economics-315 (https://www.reddit.com/user/Dear-Economics-315)
[link] (https://blog.jaysmito.dev/blog/04-fast-lockfree-queues/) [comments] (https://www.reddit.com/r/programming/comments/1v83ukz/building_a_fast_lockfree_queue_in_modern_c_from/)
How we make Luau fast
https://www.reddit.com/r/programming/comments/1v85isn/how_we_make_luau_fast/
submitted by /u/_Sharp_ (https://www.reddit.com/user/_Sharp_)
[link] (https://luau.org/performance/) [comments] (https://www.reddit.com/r/programming/comments/1v85isn/how_we_make_luau_fast/)
https://www.reddit.com/r/programming/comments/1v85isn/how_we_make_luau_fast/
submitted by /u/_Sharp_ (https://www.reddit.com/user/_Sharp_)
[link] (https://luau.org/performance/) [comments] (https://www.reddit.com/r/programming/comments/1v85isn/how_we_make_luau_fast/)
I created my own programming language-please rate it !!!
https://www.reddit.com/r/programming/comments/1v85rqi/i_created_my_own_programming_languageplease_rate/
submitted by /u/Must_officiall (https://www.reddit.com/user/Must_officiall)
[link] (https://github.com/must-lang) [comments] (https://www.reddit.com/r/programming/comments/1v85rqi/i_created_my_own_programming_languageplease_rate/)
https://www.reddit.com/r/programming/comments/1v85rqi/i_created_my_own_programming_languageplease_rate/
submitted by /u/Must_officiall (https://www.reddit.com/user/Must_officiall)
[link] (https://github.com/must-lang) [comments] (https://www.reddit.com/r/programming/comments/1v85rqi/i_created_my_own_programming_languageplease_rate/)
Pollard's P-1 Factoring Algorithm in Plain C
https://www.reddit.com/r/programming/comments/1v8dy8c/pollards_p1_factoring_algorithm_in_plain_c/
submitted by /u/DataBaeBee (https://www.reddit.com/user/DataBaeBee)
[link] (https://leetarxiv.substack.com/p/pollards-p-1-factoring-algorithm) [comments] (https://www.reddit.com/r/programming/comments/1v8dy8c/pollards_p1_factoring_algorithm_in_plain_c/)
https://www.reddit.com/r/programming/comments/1v8dy8c/pollards_p1_factoring_algorithm_in_plain_c/
submitted by /u/DataBaeBee (https://www.reddit.com/user/DataBaeBee)
[link] (https://leetarxiv.substack.com/p/pollards-p-1-factoring-algorithm) [comments] (https://www.reddit.com/r/programming/comments/1v8dy8c/pollards_p1_factoring_algorithm_in_plain_c/)
Microsoft lays out a buffet of Windows goodies for JavaScript Developers
https://www.reddit.com/r/programming/comments/1v8ojyf/microsoft_lays_out_a_buffet_of_windows_goodies/
submitted by /u/stronghup (https://www.reddit.com/user/stronghup)
[link] (https://www.theregister.com/devops/2026/07/27/microsoft-lays-out-a-buffet-of-windows-goodies-for-javascript-developers/5279244) [comments] (https://www.reddit.com/r/programming/comments/1v8ojyf/microsoft_lays_out_a_buffet_of_windows_goodies/)
https://www.reddit.com/r/programming/comments/1v8ojyf/microsoft_lays_out_a_buffet_of_windows_goodies/
submitted by /u/stronghup (https://www.reddit.com/user/stronghup)
[link] (https://www.theregister.com/devops/2026/07/27/microsoft-lays-out-a-buffet-of-windows-goodies-for-javascript-developers/5279244) [comments] (https://www.reddit.com/r/programming/comments/1v8ojyf/microsoft_lays_out_a_buffet_of_windows_goodies/)
Vendor-agnostic ML inference on production edge devices
https://www.reddit.com/r/programming/comments/1v8wl5t/vendoragnostic_ml_inference_on_production_edge/
<!-- SC_OFF -->I work on PostSlate, a video editing tool, and this comes out of our own work. We run ML models on-device, face detection and embedding among other things, which means we can't assume anything about the user's GPU. NVIDIA discrete, AMD, Intel integrated, Apple Silicon, all of it. That rules out CUDA immediately, we needed one backend that runs everywhere. We landed on ncnn's Vulkan backend. Numbers on a 4070, fp16: ArcFace R50 (face embedding): 30 ms on ONNX CPU → 3 ms on ncnn Vulkan SCRFD (face detection): 25 ms → 2.5 ms Model size: ArcFace 174 MB (ONNX fp32) → 87 MB (ncnn fp16 weight storage) Of course the real speedup comes from offloading compute to the GPU, but this wouldn't be possible without the power of Vulkan. The speed wasn't even the deciding factor, it's that Vulkan drivers already exist on every machine we ship to. This means that we don't have to force the user to download a specific runtime and no vendor-specific installs. Full writeup with the rest of the numbers: https://getpostslate.com/blog/faster-local-inference <!-- SC_ON --> submitted by /u/ppchaos (https://www.reddit.com/user/ppchaos)
[link] (https://getpostslate.com/blog/faster-local-inference) [comments] (https://www.reddit.com/r/programming/comments/1v8wl5t/vendoragnostic_ml_inference_on_production_edge/)
https://www.reddit.com/r/programming/comments/1v8wl5t/vendoragnostic_ml_inference_on_production_edge/
<!-- SC_OFF -->I work on PostSlate, a video editing tool, and this comes out of our own work. We run ML models on-device, face detection and embedding among other things, which means we can't assume anything about the user's GPU. NVIDIA discrete, AMD, Intel integrated, Apple Silicon, all of it. That rules out CUDA immediately, we needed one backend that runs everywhere. We landed on ncnn's Vulkan backend. Numbers on a 4070, fp16: ArcFace R50 (face embedding): 30 ms on ONNX CPU → 3 ms on ncnn Vulkan SCRFD (face detection): 25 ms → 2.5 ms Model size: ArcFace 174 MB (ONNX fp32) → 87 MB (ncnn fp16 weight storage) Of course the real speedup comes from offloading compute to the GPU, but this wouldn't be possible without the power of Vulkan. The speed wasn't even the deciding factor, it's that Vulkan drivers already exist on every machine we ship to. This means that we don't have to force the user to download a specific runtime and no vendor-specific installs. Full writeup with the rest of the numbers: https://getpostslate.com/blog/faster-local-inference <!-- SC_ON --> submitted by /u/ppchaos (https://www.reddit.com/user/ppchaos)
[link] (https://getpostslate.com/blog/faster-local-inference) [comments] (https://www.reddit.com/r/programming/comments/1v8wl5t/vendoragnostic_ml_inference_on_production_edge/)
Dependency Cultures - Richard Feldman
https://www.reddit.com/r/programming/comments/1v8ynjn/dependency_cultures_richard_feldman/
<!-- SC_OFF -->Excellent talk by Richard Feldman about how different programming communities approach dependencies. <!-- SC_ON --> submitted by /u/isaacvando (https://www.reddit.com/user/isaacvando)
[link] (https://youtu.be/E82ly38YEEQ) [comments] (https://www.reddit.com/r/programming/comments/1v8ynjn/dependency_cultures_richard_feldman/)
https://www.reddit.com/r/programming/comments/1v8ynjn/dependency_cultures_richard_feldman/
<!-- SC_OFF -->Excellent talk by Richard Feldman about how different programming communities approach dependencies. <!-- SC_ON --> submitted by /u/isaacvando (https://www.reddit.com/user/isaacvando)
[link] (https://youtu.be/E82ly38YEEQ) [comments] (https://www.reddit.com/r/programming/comments/1v8ynjn/dependency_cultures_richard_feldman/)
Finding bugs in Raft implementations
https://www.reddit.com/r/programming/comments/1v90kmd/finding_bugs_in_raft_implementations/
submitted by /u/f311a (https://www.reddit.com/user/f311a)
[link] (https://antithesis.com/blog/2026/finding-bugs-in-raft-implementations/) [comments] (https://www.reddit.com/r/programming/comments/1v90kmd/finding_bugs_in_raft_implementations/)
https://www.reddit.com/r/programming/comments/1v90kmd/finding_bugs_in_raft_implementations/
submitted by /u/f311a (https://www.reddit.com/user/f311a)
[link] (https://antithesis.com/blog/2026/finding-bugs-in-raft-implementations/) [comments] (https://www.reddit.com/r/programming/comments/1v90kmd/finding_bugs_in_raft_implementations/)
A shell colon does nothing. Use it anyway. | Filip Roséen
https://www.reddit.com/r/programming/comments/1v90z1b/a_shell_colon_does_nothing_use_it_anyway_filip/
submitted by /u/f311a (https://www.reddit.com/user/f311a)
[link] (https://refp.se/articles/your-shell-and-the-magic-colon) [comments] (https://www.reddit.com/r/programming/comments/1v90z1b/a_shell_colon_does_nothing_use_it_anyway_filip/)
https://www.reddit.com/r/programming/comments/1v90z1b/a_shell_colon_does_nothing_use_it_anyway_filip/
submitted by /u/f311a (https://www.reddit.com/user/f311a)
[link] (https://refp.se/articles/your-shell-and-the-magic-colon) [comments] (https://www.reddit.com/r/programming/comments/1v90z1b/a_shell_colon_does_nothing_use_it_anyway_filip/)