The React Foundation: A New Home for React Hosted by the Linux Foundation
https://www.reddit.com/r/programming/comments/1rf2sra/the_react_foundation_a_new_home_for_react_hosted/
submitted by /u/Nimelrian (https://www.reddit.com/user/Nimelrian)
[link] (https://react.dev/blog/2026/02/24/the-react-foundation) [comments] (https://www.reddit.com/r/programming/comments/1rf2sra/the_react_foundation_a_new_home_for_react_hosted/)
https://www.reddit.com/r/programming/comments/1rf2sra/the_react_foundation_a_new_home_for_react_hosted/
submitted by /u/Nimelrian (https://www.reddit.com/user/Nimelrian)
[link] (https://react.dev/blog/2026/02/24/the-react-foundation) [comments] (https://www.reddit.com/r/programming/comments/1rf2sra/the_react_foundation_a_new_home_for_react_hosted/)
Keystone Desktop – Native + Web desktop framework: C# host, Bun runtime, WebKit renderer
https://www.reddit.com/r/programming/comments/1rf36vi/keystone_desktop_native_web_desktop_framework_c/
<!-- SC_OFF -->Hi — This is my open source project. Keystone-Desktop, a desktop application framework that runs as three OS processes: a C# host (AppKit/Metal on macOS, GTK4/Vulkan on Linux, Win32/D3D12 on Windows), a Bun subprocess (TypeScript services, web component bundling, WebSocket bridge), and a WebKit content process per window. Why another desktop framework? Existing frameworks force a choice. Electron and Tauri give you web rendering — great for UI, but if you need native GPU rendering (Metal/Vulkan), you're out of luck. Qt and SwiftUI give you native rendering but no web ecosystem. Keystone lets you use either or both: a single window can composite GPU/Skia-rendered content alongside WebKit content. Build your whole app in web tech, build it entirely in native C# with GPU rendering, or mix them per-window. Three ways to build: - Web-only:
TypeScript UI + Bun services, zero C# code. Declare windows in config, implement as web components. Built-in APIs cover file dialogs, window management, shell integration. - Native-only:
Pure C# with GPU/Skia rendering and Flex layout via Taffy (Rust FFI). No browser overhead. - Hybrid:
GPU-rendered canvas for performance-critical content, WebKit for rich UI — composited together in the same window. The interesting technical decisions: - Each IPC direction uses a purpose-chosen transport. Browser -> C# goes through WKScriptMessageHandler (direct, zero network hops). C# <-> Bun uses NDJSON over stdin/stdout (reliable, synchronous with process lifetime). Browser <-> Bun uses WebSocket (async, pub/sub, live data). - Hot-reloadable .NET plugins via collectible AssemblyLoadContext. The runtime builds a dependency graph from assembly references — when a shared library plugin reloads, all its dependents cascade-reload in topological order. State is serialized before unload and deserialized into the new instance. Sub-second native code iteration without restarting the app. - Per-window render threads synced to DisplayLink. Idle windows suspend their vsync subscription. During live resize, drawable size freezes and the compositor scales — avoids the frame-drop issue most Metal apps have during resize. - A dual rendering path: retained scene graph (diffed between frames, layout via Taffy/Rust FFI) for UI chrome, and immediate-mode Skia for custom visualization. Composable via CanvasNode — embed an immediate-mode region inside the retained scene graph. Current state:
v1.0.2 ~24k lines of framework code. macOS is the most tested path. Built by one person over ~3 months, extracted from a monolith app into a standalone framework over ~1 week. MIT licensed. Happy to answer architecture questions. <!-- SC_ON --> submitted by /u/hayztrading (https://www.reddit.com/user/hayztrading)
[link] (https://github.com/khayzz13/keystone_desktop) [comments] (https://www.reddit.com/r/programming/comments/1rf36vi/keystone_desktop_native_web_desktop_framework_c/)
https://www.reddit.com/r/programming/comments/1rf36vi/keystone_desktop_native_web_desktop_framework_c/
<!-- SC_OFF -->Hi — This is my open source project. Keystone-Desktop, a desktop application framework that runs as three OS processes: a C# host (AppKit/Metal on macOS, GTK4/Vulkan on Linux, Win32/D3D12 on Windows), a Bun subprocess (TypeScript services, web component bundling, WebSocket bridge), and a WebKit content process per window. Why another desktop framework? Existing frameworks force a choice. Electron and Tauri give you web rendering — great for UI, but if you need native GPU rendering (Metal/Vulkan), you're out of luck. Qt and SwiftUI give you native rendering but no web ecosystem. Keystone lets you use either or both: a single window can composite GPU/Skia-rendered content alongside WebKit content. Build your whole app in web tech, build it entirely in native C# with GPU rendering, or mix them per-window. Three ways to build: - Web-only:
TypeScript UI + Bun services, zero C# code. Declare windows in config, implement as web components. Built-in APIs cover file dialogs, window management, shell integration. - Native-only:
Pure C# with GPU/Skia rendering and Flex layout via Taffy (Rust FFI). No browser overhead. - Hybrid:
GPU-rendered canvas for performance-critical content, WebKit for rich UI — composited together in the same window. The interesting technical decisions: - Each IPC direction uses a purpose-chosen transport. Browser -> C# goes through WKScriptMessageHandler (direct, zero network hops). C# <-> Bun uses NDJSON over stdin/stdout (reliable, synchronous with process lifetime). Browser <-> Bun uses WebSocket (async, pub/sub, live data). - Hot-reloadable .NET plugins via collectible AssemblyLoadContext. The runtime builds a dependency graph from assembly references — when a shared library plugin reloads, all its dependents cascade-reload in topological order. State is serialized before unload and deserialized into the new instance. Sub-second native code iteration without restarting the app. - Per-window render threads synced to DisplayLink. Idle windows suspend their vsync subscription. During live resize, drawable size freezes and the compositor scales — avoids the frame-drop issue most Metal apps have during resize. - A dual rendering path: retained scene graph (diffed between frames, layout via Taffy/Rust FFI) for UI chrome, and immediate-mode Skia for custom visualization. Composable via CanvasNode — embed an immediate-mode region inside the retained scene graph. Current state:
v1.0.2 ~24k lines of framework code. macOS is the most tested path. Built by one person over ~3 months, extracted from a monolith app into a standalone framework over ~1 week. MIT licensed. Happy to answer architecture questions. <!-- SC_ON --> submitted by /u/hayztrading (https://www.reddit.com/user/hayztrading)
[link] (https://github.com/khayzz13/keystone_desktop) [comments] (https://www.reddit.com/r/programming/comments/1rf36vi/keystone_desktop_native_web_desktop_framework_c/)
Visualizing how HTTPS, OAuth, Git, and TCP actually work
https://www.reddit.com/r/programming/comments/1rf38tj/visualizing_how_https_oauth_git_and_tcp_actually/
submitted by /u/nulless (https://www.reddit.com/user/nulless)
[link] (https://toolkit.whysonil.dev/how-it-works) [comments] (https://www.reddit.com/r/programming/comments/1rf38tj/visualizing_how_https_oauth_git_and_tcp_actually/)
https://www.reddit.com/r/programming/comments/1rf38tj/visualizing_how_https_oauth_git_and_tcp_actually/
submitted by /u/nulless (https://www.reddit.com/user/nulless)
[link] (https://toolkit.whysonil.dev/how-it-works) [comments] (https://www.reddit.com/r/programming/comments/1rf38tj/visualizing_how_https_oauth_git_and_tcp_actually/)
yaml-language-server added CRD auto-detection — here’s what it does, and where yaml-schema-router still helps (esp. non-VS Code)
https://www.reddit.com/r/programming/comments/1rf3uze/yamllanguageserver_added_crd_autodetection_heres/
submitted by /u/lucatrai (https://www.reddit.com/user/lucatrai)
[link] (https://github.com/traiproject/yaml-schema-router) [comments] (https://www.reddit.com/r/programming/comments/1rf3uze/yamllanguageserver_added_crd_autodetection_heres/)
https://www.reddit.com/r/programming/comments/1rf3uze/yamllanguageserver_added_crd_autodetection_heres/
submitted by /u/lucatrai (https://www.reddit.com/user/lucatrai)
[link] (https://github.com/traiproject/yaml-schema-router) [comments] (https://www.reddit.com/r/programming/comments/1rf3uze/yamllanguageserver_added_crd_autodetection_heres/)
I have devised a factorization algorithm.The source is written in C and uses the GMP and ECM libraries. Would anyone with a decent computer like to test this?
https://www.reddit.com/r/programming/comments/1rf4cjr/i_have_devised_a_factorization_algorithmthe/
<!-- SC_OFF -->I have devised a factorization algorithm that: Given M, a number to be factored, From M, generates an N of the order of magnitude of M^2. Starts the complete factorization of N using trial division, H_special, ECM, and Pollard–Rho. Each time it finds a new factor, it updates the current factorization. At each TIMEOUT expiration, it checks whether a given value S is valid. If S is valid, it is sent to the main program via. The main program checks whether S produces a factorization of M; otherwise, it generates another N and restarts. The source is written in C and uses the GMP and ECM libraries. ECM uses B1 = 50000, 250000, 1000000, with 200 curves for each B1, for a total of 600 ECM curves, with standard GMP-ECM parameters and a timeout of 1800 seconds. Optimal case: N is factored in a few seconds S is valid S produces a factorization of M Would anyone with a decent computer like to test this? lepore_factorization_nr_00 https://github.com/Piunosei/lepore_factorization_nr_00 <!-- SC_ON --> submitted by /u/Acrobatic_Tadpole724 (https://www.reddit.com/user/Acrobatic_Tadpole724)
[link] (https://github.com/Piunosei/lepore_factorization_nr_00) [comments] (https://www.reddit.com/r/programming/comments/1rf4cjr/i_have_devised_a_factorization_algorithmthe/)
https://www.reddit.com/r/programming/comments/1rf4cjr/i_have_devised_a_factorization_algorithmthe/
<!-- SC_OFF -->I have devised a factorization algorithm that: Given M, a number to be factored, From M, generates an N of the order of magnitude of M^2. Starts the complete factorization of N using trial division, H_special, ECM, and Pollard–Rho. Each time it finds a new factor, it updates the current factorization. At each TIMEOUT expiration, it checks whether a given value S is valid. If S is valid, it is sent to the main program via. The main program checks whether S produces a factorization of M; otherwise, it generates another N and restarts. The source is written in C and uses the GMP and ECM libraries. ECM uses B1 = 50000, 250000, 1000000, with 200 curves for each B1, for a total of 600 ECM curves, with standard GMP-ECM parameters and a timeout of 1800 seconds. Optimal case: N is factored in a few seconds S is valid S produces a factorization of M Would anyone with a decent computer like to test this? lepore_factorization_nr_00 https://github.com/Piunosei/lepore_factorization_nr_00 <!-- SC_ON --> submitted by /u/Acrobatic_Tadpole724 (https://www.reddit.com/user/Acrobatic_Tadpole724)
[link] (https://github.com/Piunosei/lepore_factorization_nr_00) [comments] (https://www.reddit.com/r/programming/comments/1rf4cjr/i_have_devised_a_factorization_algorithmthe/)
How NVIDIA's CuTe replaces GPU index arithmetic with composable layout algebra
https://www.reddit.com/r/programming/comments/1rf4hk6/how_nvidias_cute_replaces_gpu_index_arithmetic/
submitted by /u/amandeepspdhr (https://www.reddit.com/user/amandeepspdhr)
[link] (https://amandeepsp.github.io/blog/layout-algebra/) [comments] (https://www.reddit.com/r/programming/comments/1rf4hk6/how_nvidias_cute_replaces_gpu_index_arithmetic/)
https://www.reddit.com/r/programming/comments/1rf4hk6/how_nvidias_cute_replaces_gpu_index_arithmetic/
submitted by /u/amandeepspdhr (https://www.reddit.com/user/amandeepspdhr)
[link] (https://amandeepsp.github.io/blog/layout-algebra/) [comments] (https://www.reddit.com/r/programming/comments/1rf4hk6/how_nvidias_cute_replaces_gpu_index_arithmetic/)
The MySQL-to-Postgres Migration That Saved $480K/Year: A Step-by-Step Guide
https://www.reddit.com/r/programming/comments/1rfb4lj/the_mysqltopostgres_migration_that_saved_480kyear/
submitted by /u/narrow-adventure (https://www.reddit.com/user/narrow-adventure)
[link] (https://medium.com/@dusan.stanojevic.cs/the-mysql-to-postgres-migration-that-saved-480k-year-a-step-by-step-guide-4b0fa9f5bdb7) [comments] (https://www.reddit.com/r/programming/comments/1rfb4lj/the_mysqltopostgres_migration_that_saved_480kyear/)
https://www.reddit.com/r/programming/comments/1rfb4lj/the_mysqltopostgres_migration_that_saved_480kyear/
submitted by /u/narrow-adventure (https://www.reddit.com/user/narrow-adventure)
[link] (https://medium.com/@dusan.stanojevic.cs/the-mysql-to-postgres-migration-that-saved-480k-year-a-step-by-step-guide-4b0fa9f5bdb7) [comments] (https://www.reddit.com/r/programming/comments/1rfb4lj/the_mysqltopostgres_migration_that_saved_480kyear/)
Developers Are Safe… Thanks to Corporate Red Tape
https://www.reddit.com/r/programming/comments/1rfc62c/developers_are_safe_thanks_to_corporate_red_tape/
submitted by /u/Select_Bicycle4711 (https://www.reddit.com/user/Select_Bicycle4711)
[link] (https://azamsharp.com/2026/02/26/developers-are-safe.html) [comments] (https://www.reddit.com/r/programming/comments/1rfc62c/developers_are_safe_thanks_to_corporate_red_tape/)
https://www.reddit.com/r/programming/comments/1rfc62c/developers_are_safe_thanks_to_corporate_red_tape/
submitted by /u/Select_Bicycle4711 (https://www.reddit.com/user/Select_Bicycle4711)
[link] (https://azamsharp.com/2026/02/26/developers-are-safe.html) [comments] (https://www.reddit.com/r/programming/comments/1rfc62c/developers_are_safe_thanks_to_corporate_red_tape/)
What I learned from the book Software Engineering at Google
https://www.reddit.com/r/programming/comments/1rfe59k/what_i_learned_from_the_book_software_engineering/
submitted by /u/milanm08 (https://www.reddit.com/user/milanm08)
[link] (https://newsletter.techworld-with-milan.com/p/what-i-learned-at-swe-at-google-book) [comments] (https://www.reddit.com/r/programming/comments/1rfe59k/what_i_learned_from_the_book_software_engineering/)
https://www.reddit.com/r/programming/comments/1rfe59k/what_i_learned_from_the_book_software_engineering/
submitted by /u/milanm08 (https://www.reddit.com/user/milanm08)
[link] (https://newsletter.techworld-with-milan.com/p/what-i-learned-at-swe-at-google-book) [comments] (https://www.reddit.com/r/programming/comments/1rfe59k/what_i_learned_from_the_book_software_engineering/)
A VC and some big-name programmers are trying to solve open source’s funding problem, permanently
https://www.reddit.com/r/programming/comments/1rfeaei/a_vc_and_some_bigname_programmers_are_trying_to/
submitted by /u/Outrageous-Baker5834 (https://www.reddit.com/user/Outrageous-Baker5834)
[link] (https://techcrunch.com/2026/02/26/a-vc-and-some-big-name-programmers-are-trying-to-solve-open-sources-funding-problem-permanently/) [comments] (https://www.reddit.com/r/programming/comments/1rfeaei/a_vc_and_some_bigname_programmers_are_trying_to/)
https://www.reddit.com/r/programming/comments/1rfeaei/a_vc_and_some_bigname_programmers_are_trying_to/
submitted by /u/Outrageous-Baker5834 (https://www.reddit.com/user/Outrageous-Baker5834)
[link] (https://techcrunch.com/2026/02/26/a-vc-and-some-big-name-programmers-are-trying-to-solve-open-sources-funding-problem-permanently/) [comments] (https://www.reddit.com/r/programming/comments/1rfeaei/a_vc_and_some_bigname_programmers_are_trying_to/)
Against Query Based Compilers
https://www.reddit.com/r/programming/comments/1rfgx8x/against_query_based_compilers/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://matklad.github.io/2026/02/25/against-query-based-compilers.html) [comments] (https://www.reddit.com/r/programming/comments/1rfgx8x/against_query_based_compilers/)
https://www.reddit.com/r/programming/comments/1rfgx8x/against_query_based_compilers/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://matklad.github.io/2026/02/25/against-query-based-compilers.html) [comments] (https://www.reddit.com/r/programming/comments/1rfgx8x/against_query_based_compilers/)
snakes.run: rendering 100M pixels a second over ssh ·
https://www.reddit.com/r/programming/comments/1rfgy2v/snakesrun_rendering_100m_pixels_a_second_over_ssh/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://eieio.games/blog/secure-massively-multiplayer-snake/) [comments] (https://www.reddit.com/r/programming/comments/1rfgy2v/snakesrun_rendering_100m_pixels_a_second_over_ssh/)
https://www.reddit.com/r/programming/comments/1rfgy2v/snakesrun_rendering_100m_pixels_a_second_over_ssh/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://eieio.games/blog/secure-massively-multiplayer-snake/) [comments] (https://www.reddit.com/r/programming/comments/1rfgy2v/snakesrun_rendering_100m_pixels_a_second_over_ssh/)
Evolving Languages Faster with Type Tailoring
https://www.reddit.com/r/programming/comments/1rfgy97/evolving_languages_faster_with_type_tailoring/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://lambdaland.org/posts/2024-07-15_type_tailoring/) [comments] (https://www.reddit.com/r/programming/comments/1rfgy97/evolving_languages_faster_with_type_tailoring/)
https://www.reddit.com/r/programming/comments/1rfgy97/evolving_languages_faster_with_type_tailoring/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://lambdaland.org/posts/2024-07-15_type_tailoring/) [comments] (https://www.reddit.com/r/programming/comments/1rfgy97/evolving_languages_faster_with_type_tailoring/)
Ordered Dithering with Arbitrary or Irregular Colour Palettes
https://www.reddit.com/r/programming/comments/1rfgyho/ordered_dithering_with_arbitrary_or_irregular/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://matejlou.blog/2023/12/06/ordered-dithering-for-arbitrary-or-irregular-palettes/) [comments] (https://www.reddit.com/r/programming/comments/1rfgyho/ordered_dithering_with_arbitrary_or_irregular/)
https://www.reddit.com/r/programming/comments/1rfgyho/ordered_dithering_with_arbitrary_or_irregular/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://matejlou.blog/2023/12/06/ordered-dithering-for-arbitrary-or-irregular-palettes/) [comments] (https://www.reddit.com/r/programming/comments/1rfgyho/ordered_dithering_with_arbitrary_or_irregular/)
Making WebAssembly a first-class language on the Web
https://www.reddit.com/r/programming/comments/1rfgzit/making_webassembly_a_firstclass_language_on_the/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://hacks.mozilla.org/2026/02/making-webassembly-a-first-class-language-on-the-web/) [comments] (https://www.reddit.com/r/programming/comments/1rfgzit/making_webassembly_a_firstclass_language_on_the/)
https://www.reddit.com/r/programming/comments/1rfgzit/making_webassembly_a_firstclass_language_on_the/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://hacks.mozilla.org/2026/02/making-webassembly-a-first-class-language-on-the-web/) [comments] (https://www.reddit.com/r/programming/comments/1rfgzit/making_webassembly_a_firstclass_language_on_the/)
AI=true is an Anti-Pattern
https://www.reddit.com/r/programming/comments/1rfiwf5/aitrue_is_an_antipattern/
submitted by /u/keleshev (https://www.reddit.com/user/keleshev)
[link] (https://keleshev.com/ai-equals-true-is-an-anti-pattern) [comments] (https://www.reddit.com/r/programming/comments/1rfiwf5/aitrue_is_an_antipattern/)
https://www.reddit.com/r/programming/comments/1rfiwf5/aitrue_is_an_antipattern/
submitted by /u/keleshev (https://www.reddit.com/user/keleshev)
[link] (https://keleshev.com/ai-equals-true-is-an-anti-pattern) [comments] (https://www.reddit.com/r/programming/comments/1rfiwf5/aitrue_is_an_antipattern/)
Open vs Closed Loop: A Benchmarking Crime
https://www.reddit.com/r/programming/comments/1rfjr3w/open_vs_closed_loop_a_benchmarking_crime/
<!-- SC_OFF -->This post explains in relatively simple terms what an open loop benchmark is and why it can be vital to get this right. I am hardly the first person to write about this topic, but I suspect that I am not the only one who hadn't thought about the details of their benchmarking setup enough. <!-- SC_ON --> submitted by /u/curly_droid (https://www.reddit.com/user/curly_droid)
[link] (https://notpeerreviewed.com/blog/tail-latency/) [comments] (https://www.reddit.com/r/programming/comments/1rfjr3w/open_vs_closed_loop_a_benchmarking_crime/)
https://www.reddit.com/r/programming/comments/1rfjr3w/open_vs_closed_loop_a_benchmarking_crime/
<!-- SC_OFF -->This post explains in relatively simple terms what an open loop benchmark is and why it can be vital to get this right. I am hardly the first person to write about this topic, but I suspect that I am not the only one who hadn't thought about the details of their benchmarking setup enough. <!-- SC_ON --> submitted by /u/curly_droid (https://www.reddit.com/user/curly_droid)
[link] (https://notpeerreviewed.com/blog/tail-latency/) [comments] (https://www.reddit.com/r/programming/comments/1rfjr3w/open_vs_closed_loop_a_benchmarking_crime/)
Rust in Production: JetBrains
https://www.reddit.com/r/programming/comments/1rfl42t/rust_in_production_jetbrains/
<!-- SC_OFF -->This interview explores JetBrains’ strategy for supporting the Rust Foundation and collaborating around shared tooling like rust-analyzer, the rationale behind launching RustRover, and how user adoption data shapes priorities such as debugging, async Rust workflows, and test tooling (including cargo nextest). <!-- SC_ON --> submitted by /u/Hefty-Necessary7621 (https://www.reddit.com/user/Hefty-Necessary7621)
[link] (https://serokell.io/blog/rust-in-production-jetbrains) [comments] (https://www.reddit.com/r/programming/comments/1rfl42t/rust_in_production_jetbrains/)
https://www.reddit.com/r/programming/comments/1rfl42t/rust_in_production_jetbrains/
<!-- SC_OFF -->This interview explores JetBrains’ strategy for supporting the Rust Foundation and collaborating around shared tooling like rust-analyzer, the rationale behind launching RustRover, and how user adoption data shapes priorities such as debugging, async Rust workflows, and test tooling (including cargo nextest). <!-- SC_ON --> submitted by /u/Hefty-Necessary7621 (https://www.reddit.com/user/Hefty-Necessary7621)
[link] (https://serokell.io/blog/rust-in-production-jetbrains) [comments] (https://www.reddit.com/r/programming/comments/1rfl42t/rust_in_production_jetbrains/)
Lazy Binary Decision Diagrams with eager literal intersections
https://www.reddit.com/r/programming/comments/1rfll6l/lazy_binary_decision_diagrams_with_eager_literal/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://elixir-lang.org/blog/2026/02/26/eager-literal-intersections/) [comments] (https://www.reddit.com/r/programming/comments/1rfll6l/lazy_binary_decision_diagrams_with_eager_literal/)
https://www.reddit.com/r/programming/comments/1rfll6l/lazy_binary_decision_diagrams_with_eager_literal/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://elixir-lang.org/blog/2026/02/26/eager-literal-intersections/) [comments] (https://www.reddit.com/r/programming/comments/1rfll6l/lazy_binary_decision_diagrams_with_eager_literal/)
Offlining a Live Game With .NET Native AOT
https://www.reddit.com/r/programming/comments/1rfmrl4/offlining_a_live_game_with_net_native_aot/
submitted by /u/Seph13 (https://www.reddit.com/user/Seph13)
[link] (https://sephnewman.substack.com/p/offlining-a-live-game-with-net-native) [comments] (https://www.reddit.com/r/programming/comments/1rfmrl4/offlining_a_live_game_with_net_native_aot/)
https://www.reddit.com/r/programming/comments/1rfmrl4/offlining_a_live_game_with_net_native_aot/
submitted by /u/Seph13 (https://www.reddit.com/user/Seph13)
[link] (https://sephnewman.substack.com/p/offlining-a-live-game-with-net-native) [comments] (https://www.reddit.com/r/programming/comments/1rfmrl4/offlining_a_live_game_with_net_native_aot/)
Understanding the Go Runtime: The Memory Allocator
https://www.reddit.com/r/programming/comments/1rfq2lj/understanding_the_go_runtime_the_memory_allocator/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://internals-for-interns.com/posts/go-memory-allocator/) [comments] (https://www.reddit.com/r/programming/comments/1rfq2lj/understanding_the_go_runtime_the_memory_allocator/)
https://www.reddit.com/r/programming/comments/1rfq2lj/understanding_the_go_runtime_the_memory_allocator/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://internals-for-interns.com/posts/go-memory-allocator/) [comments] (https://www.reddit.com/r/programming/comments/1rfq2lj/understanding_the_go_runtime_the_memory_allocator/)