I will send you newest post from subreddit /r/programming
ReactOS Merges Better Support For Fullscreen Applications
https://www.reddit.com/r/programming/comments/1lcwlsr/reactos_merges_better_support_for_fullscreen/
submitted by /u/gametorch (https://www.reddit.com/user/gametorch)
[link] (https://www.phoronix.com/news/ReactOS-Fullscreen-Apps) [comments] (https://www.reddit.com/r/programming/comments/1lcwlsr/reactos_merges_better_support_for_fullscreen/)
CI/CD Observability with OpenTelemetry - A Step by Step Guide
https://www.reddit.com/r/programming/comments/1lcus5l/cicd_observability_with_opentelemetry_a_step_by/
submitted by /u/elizObserves (https://www.reddit.com/user/elizObserves)
[link] (https://signoz.io/blog/cicd-observability-with-opentelemetry/) [comments] (https://www.reddit.com/r/programming/comments/1lcus5l/cicd_observability_with_opentelemetry_a_step_by/)
Kent Beck with his talk on Tidy First
https://www.reddit.com/r/programming/comments/1lan3fa/kent_beck_with_his_talk_on_tidy_first/
submitted by /u/alex_pumnea (https://www.reddit.com/user/alex_pumnea)
[link] (https://youtu.be/SLqSUHFxBoE?si=5Z4ECWro6ZfEijWJ) [comments] (https://www.reddit.com/r/programming/comments/1lan3fa/kent_beck_with_his_talk_on_tidy_first/)
[link] (https://github.com/centrifugal/centrifugo) [comments] (https://www.reddit.com/r/programming/comments/1lal8mp/centrifugo_the_gobased_opensource_realtime/)
Читать полностью…StarMalloc: verified memory allocator
https://www.reddit.com/r/programming/comments/1lal7h9/starmalloc_verified_memory_allocator/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://dl.acm.org/doi/10.1145/3689773) [comments] (https://www.reddit.com/r/programming/comments/1lal7h9/starmalloc_verified_memory_allocator/)
Quantum Computing without the Linear Algebra [pdf]
https://www.reddit.com/r/programming/comments/1lakaa5/quantum_computing_without_the_linear_algebra_pdf/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://eprint.iacr.org/2025/1091.pdf) [comments] (https://www.reddit.com/r/programming/comments/1lakaa5/quantum_computing_without_the_linear_algebra_pdf/)
Asterinas: A Linux ABI-compatible, Rust-based framekernel OS
https://www.reddit.com/r/programming/comments/1lak7st/asterinas_a_linux_abicompatible_rustbased/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://asterinas.github.io/2025/06/04/kernel-memory-safety-mission-accomplished.html) [comments] (https://www.reddit.com/r/programming/comments/1lak7st/asterinas_a_linux_abicompatible_rustbased/)
OxCaml - OCaml, Oxidized
https://www.reddit.com/r/programming/comments/1lajpew/oxcaml_ocaml_oxidized/
submitted by /u/yawaramin (https://www.reddit.com/user/yawaramin)
[link] (https://oxcaml.org/) [comments] (https://www.reddit.com/r/programming/comments/1lajpew/oxcaml_ocaml_oxidized/)
Why we don't do leetcode style interviews
https://www.reddit.com/r/programming/comments/1lagt6w/why_we_dont_do_leetcode_style_interviews/
submitted by /u/ProteanLabsJohn (https://www.reddit.com/user/ProteanLabsJohn)
[link] (https://protean-labs.io/blog/why-we-dont-do-leetcode-style-technical-interviews) [comments] (https://www.reddit.com/r/programming/comments/1lagt6w/why_we_dont_do_leetcode_style_interviews/)
Dr. Cat Hicks on Why Developers Feel Anxious At Work
https://www.reddit.com/r/programming/comments/1laernq/dr_cat_hicks_on_why_developers_feel_anxious_at/
submitted by /u/shift_devs (https://www.reddit.com/user/shift_devs)
[link] (https://shiftmag.dev/dr-cat-hicks-software-teams-psychology-5357/) [comments] (https://www.reddit.com/r/programming/comments/1laernq/dr_cat_hicks_on_why_developers_feel_anxious_at/)
AI Generated Books
https://www.reddit.com/r/programming/comments/1laayqu/ai_generated_books/
<!-- SC_OFF -->If you're looking for good books on programming, please avoid this author. The content is clearly AI generated, and created simply to farm purchases from those who don't know any better. Pick any of the books and just read the sample. It's barely readable. I'm worried that people who are looking and don't know any better will buy them. Just posting here to spread awareness. <!-- SC_ON --> submitted by /u/ctrtanc (https://www.reddit.com/user/ctrtanc)
[link] (https://www.amazon.com/s?i=digital-text&rh=p_27%3AMaxwell%2BVector) [comments] (https://www.reddit.com/r/programming/comments/1laayqu/ai_generated_books/)
jemalloc Postmortem
https://www.reddit.com/r/programming/comments/1la9anf/jemalloc_postmortem/
submitted by /u/mttd (https://www.reddit.com/user/mttd)
[link] (https://jasone.github.io/2025/06/12/jemalloc-postmortem/) [comments] (https://www.reddit.com/r/programming/comments/1la9anf/jemalloc_postmortem/)
Mochi v0.7.0 — Go+Python interop, self-eval, and agent streams
https://www.reddit.com/r/programming/comments/1la7m84/mochi_v070_gopython_interop_selfeval_and_agent/
<!-- SC_OFF -->We just released Mochi v0.7.0 (https://github.com/tamnd/mochi), a small statically typed scripting language for agents, real-time data, and working alongside Go, Python, and TypeScript. This update brings a few solid improvements: Agent messaging
Agents now have stream-backed mailboxes. You can send and wait with deterministic ordering — useful for simulations, coordination, or async systems. Go and Python in the same file
You can now call Go and Python together. Go FFI supports structs and method calls: import go "strings" as strings auto import python "math" as math let name = strings.ToUpper("alice") let area = math.pi * math.pow(3.0, 2.0) Dynamic eval
You can now evaluate Mochi code at runtime — including code generated on the fly: let code = generate text { prompt: "Write mochi code to calculate 2+2?" } let result = eval(code) print(result) // 4 Local imports
You can import files and folders using ./ and ../, no registry required. Still early, but if you're into lightweight scripting, cross-language interop, or agent-based workflows, it might be worth a look.
We’d love feedback — https://github.com/mochilang/mochi (https://github.com/tamnd/mochi) <!-- SC_ON --> submitted by /u/Adept-Country4317 (https://www.reddit.com/user/Adept-Country4317)
[link] (https://github.com/mochilang/mochi/releases/tag/v0.7.0) [comments] (https://www.reddit.com/r/programming/comments/1la7m84/mochi_v070_gopython_interop_selfeval_and_agent/)
When Google Sneezes, the Whole World Catches a Cold | Forge Code
https://www.reddit.com/r/programming/comments/1la5u5j/when_google_sneezes_the_whole_world_catches_a/
<!-- SC_OFF -->Today's Google Cloud IAM outage cascaded through major platforms including Cloudflare, Anthropic, Spotify, Discord, and Replit, highlighting key reliability issues. Here's what happened, how it affected popular services, and key takeaways for developers aiming for more resilient architecture. TL;DR: Google Cloud outage took down Cloudflare, Anthropic (Claude APIs), Spotify, Discord, and many others. Key lesson: don't put all your eggs in one basket, graceful fallback patterns matter! <!-- SC_ON --> submitted by /u/West-Chocolate2977 (https://www.reddit.com/user/West-Chocolate2977)
[link] (https://forgecode.dev/blog/gcp-cloudflare-anthropic-outage/) [comments] (https://www.reddit.com/r/programming/comments/1la5u5j/when_google_sneezes_the_whole_world_catches_a/)
I Don't Want to Pay a Subscription To Program
https://www.reddit.com/r/programming/comments/1l9w900/i_dont_want_to_pay_a_subscription_to_program/
submitted by /u/rianhunter (https://www.reddit.com/user/rianhunter)
[link] (https://thelig.ht/subscription-hell/) [comments] (https://www.reddit.com/r/programming/comments/1l9w900/i_dont_want_to_pay_a_subscription_to_program/)
Programming's Greatest Mistakes • Mark Rendle
https://www.reddit.com/r/programming/comments/1lcwfql/programmings_greatest_mistakes_mark_rendle/
<!-- SC_OFF -->Most of the time when we make mistakes in our code, a message gets displayed wrong or an invoice doesn’t get sent. But sometimes when people make mistakes in code, things literally explode, or bankrupt companies, or make web development a living hell for millions of programmers for years to come. Join Mark on a tour through some of the worst mistakes in the history of programming. Learn what went wrong, why it went wrong, how much it cost, and how things are really funny when they’re not happening to you. <!-- SC_ON --> submitted by /u/goto-con (https://www.reddit.com/user/goto-con)
[link] (https://youtu.be/Y9clBHENy4Q) [comments] (https://www.reddit.com/r/programming/comments/1lcwfql/programmings_greatest_mistakes_mark_rendle/)
Technical Blogging is Dying
https://www.reddit.com/r/programming/comments/1lb1s2u/technical_blogging_is_dying/
submitted by /u/delvin0 (https://www.reddit.com/user/delvin0)
[link] (https://medium.com/gitconnected/technical-blogging-is-dying-a217ce2fc668?sk=67b64ab31b0f8ecd0d628f3d0b340629) [comments] (https://www.reddit.com/r/programming/comments/1lb1s2u/technical_blogging_is_dying/)
Melanie Sumner: Why Continuous Accessibility Is a Strategic Advantage
https://www.reddit.com/r/programming/comments/1lalb5p/melanie_sumner_why_continuous_accessibility_is_a/
submitted by /u/robbyrussell (https://www.reddit.com/user/robbyrussell)
[link] (https://maintainable.fm/episodes/melanie-sumner-why-continuous-accessibility-is-a-strategic-advantage) [comments] (https://www.reddit.com/r/programming/comments/1lalb5p/melanie_sumner_why_continuous_accessibility_is_a/)
https://www.reddit.com/r/programming/comments/1lal8mp/centrifugo_the_gobased_opensource_realtime/
<!-- SC_OFF -->I’m part of a backend team at a fairly large organization (~10k employees), and I wanted to share a bit about how we ended up using Centrifugo for real-time messaging — and why we’re happy with it. We were building an internal messenger app for all the employees (sth like Slack), deeply integrated with our company's business nature and processes, and initially planned to use Django Channels (https://channels.readthedocs.io/en/latest/), since our stack is mostly Django-based. But after digging into the architecture and doing some early testing, it became clear that the performance characteristics just weren’t going to work for our needs. We even asked for advice in the Django subreddit (https://www.reddit.com/r/django/comments/1b7002m/building_a_messenger_app_for_a_large_organization/), and while the responses were helpful, the reality is that implementing real-time messaging at this scale with Django Channels felt impractical – complex and resource-heavy. One of our main challenges was that users needed to receive real-time updates from hundreds or even over a thousand chat rooms at once — all within a single screen. And obviously up to 10k users in each room. With Django Channels, maintaining a separate real-time channel per chat room didn’t scale, and we couldn’t find a way to build the kind of architecture we needed. Then we came across Centrifugo, and it turned out to be exactly what we were missing. Here’s what stood out for us specifically: Performance: With Centrifugo, we were able to implement the design we actually wanted — each user has a personal channel instead of managing channels per room. This made fan-out manageable and let us scale in a way that felt completely out of reach with Django Channels. WebSocket with SSE and HTTP-streaming fallbacks — all of which work without requiring sticky sessions. That was a big plus for keeping our infrastructure simple. It also supports unidirectional SSE/HTTP-streaming, so for simpler use cases, you can use Centrifugo without needing a client SDK, which is really convenient. Well-thought-out reconnect handling: In the case of mass reconnects (e.g., when a reverse proxy is reloaded), Centrifugo handles it gracefully. It uses JWT-based authentication, which is a great match for WebSocket connections. And it maintains a message cache in each channel, so clients can fetch missed messages without putting sudden load on our backend services when recovering the state. Redis integration is solid and effective, also supports modern alternatives like Valkey (to which we actually switched at some point), DragonflyDB, and it seems managed Redis like Elasticache offerings from AWS too. Exposes many useful metrics via Prometheus, which made monitoring and alerting much easier for us to set up. It’s language agnostic, since it runs as a separate service — so if we ever move away from Django in the future, or start a new project with other tech – we can keep using Centrifugo as a universal tool for sending WebSocket messages. We also evaluated tools like Mercure (https://mercure.rocks/), but some important for us features (e.g., scalability to many nodes) were only available in the enterprise version, so did not work for us. Finally, it looks like the project is maintained mostly by a single person — and honestly, the quality, performance, and completeness of it really shows how much effort has been put in. We’re posting this mainly to say thanks and hopefully bring more visibility to a tool that helped us a lot. We now in production for 6 months – and it works pretty well, mostly concentrating on business-specific features now. Here’s the project: 👉 https://github.com/centrifugal/centrifugo Hope this may be helpful to others facing real-time challenges. <!-- SC_ON --> submitted by /u/OriginalBaXX (https://www.reddit.com/user/OriginalBaXX)
Everything Multiplayer
https://www.reddit.com/r/programming/comments/1lakl07/everything_multiplayer/
<!-- SC_OFF -->I spent the last year learning everything I could about multiplayer. I go from basic socket programming to complex state synchronization, to creating a backend. My goal was to create a mega resource for making multiplayer games. It's a very long and dense video, so feel free to watch at x2. This was a massive project for me, so I'm really happy to have finally finished it. I've been sharing it around to people, and have been having really good conversations with industry veterans from it. Is there anything I missed, or points you disagree with? <!-- SC_ON --> submitted by /u/No_Examination_2616 (https://www.reddit.com/user/No_Examination_2616)
[link] (https://youtu.be/fOfT5cqvOdI) [comments] (https://www.reddit.com/r/programming/comments/1lakl07/everything_multiplayer/)
WebKit's Standards Positions
https://www.reddit.com/r/programming/comments/1laka1g/webkits_standards_positions/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://webkit.org/standards-positions/) [comments] (https://www.reddit.com/r/programming/comments/1laka1g/webkits_standards_positions/)
Rendering Crispy Text on the GPU
https://www.reddit.com/r/programming/comments/1lak6du/rendering_crispy_text_on_the_gpu/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://osor.io/text) [comments] (https://www.reddit.com/r/programming/comments/1lak6du/rendering_crispy_text_on_the_gpu/)
Building Web Apps from Scratch: HTTP Protocol Explained
https://www.reddit.com/r/programming/comments/1laixc9/building_web_apps_from_scratch_http_protocol/
submitted by /u/caromobiletiscrivo (https://www.reddit.com/user/caromobiletiscrivo)
[link] (https://coz.is/posts/004_http.html) [comments] (https://www.reddit.com/r/programming/comments/1laixc9/building_web_apps_from_scratch_http_protocol/)
Tidy First? A Daily Exercise in Empirical Design • Kent Beck
https://www.reddit.com/r/programming/comments/1lafn6f/tidy_first_a_daily_exercise_in_empirical_design/
submitted by /u/goto-con (https://www.reddit.com/user/goto-con)
[link] (https://youtu.be/SLqSUHFxBoE?list=PLEx5khR4g7PLyzqZrgBcAju-QEInTN77m) [comments] (https://www.reddit.com/r/programming/comments/1lafn6f/tidy_first_a_daily_exercise_in_empirical_design/)
Breaking down ‘EchoLeak’, the First Zero-Click AI Vulnerability Enabling Data Exfiltration from Microsoft 365 Copilot
https://www.reddit.com/r/programming/comments/1ladzj1/breaking_down_echoleak_the_first_zeroclick_ai/
submitted by /u/mgrier123 (https://www.reddit.com/user/mgrier123)
[link] (https://www.aim.security/lp/aim-labs-echoleak-blogpost) [comments] (https://www.reddit.com/r/programming/comments/1ladzj1/breaking_down_echoleak_the_first_zeroclick_ai/)
Developer patterns and practices as a mood stabiliser for hypomanic AI
https://www.reddit.com/r/programming/comments/1laa92i/developer_patterns_and_practices_as_a_mood/
<!-- SC_OFF -->(I can maybe use this insensitive title as I have bipolar disorder). My AI is often like a super psyched junior developer, I ask for a new command line flag and it creates a monster changes, tonnes of comments saying all the clever stuff it’s done, doesn’t clean up old code, doesn’t think about testing, doesn’t follow obvious conventions. More code = more maintenance and tech debt, smaller is better. Don’t change without discussion. Review changes. I encoded this in “golden rules” in a developer guide, which can be used with a simple prompt (if your LLM has web access) or an MCP server (more efficient for fetching “sub guides”. I’d love feedback on the approach or any suggestions of the best next additions. I’m focusing on basic idioms for good practices, rather than specifics that are more opinionated. But it’s early days work in progress. <!-- SC_ON --> submitted by /u/dwmkerr (https://www.reddit.com/user/dwmkerr)
[link] (https://github.com/dwmkerr/ai-developer-guide) [comments] (https://www.reddit.com/r/programming/comments/1laa92i/developer_patterns_and_practices_as_a_mood/)
Why Discord Moved Away from Redis and Rebuilt Search on Kubernetes
https://www.reddit.com/r/programming/comments/1la7siw/why_discord_moved_away_from_redis_and_rebuilt/
submitted by /u/Soul_Predator (https://www.reddit.com/user/Soul_Predator)
[link] (https://analyticsindiamag.com/ai-features/why-discord-moved-away-from-redis-and-rebuilt-search-on-kubernetes/) [comments] (https://www.reddit.com/r/programming/comments/1la7siw/why_discord_moved_away_from_redis_and_rebuilt/)
Mastering CRUD Operations with Knex.js and PostgreSQL
https://www.reddit.com/r/programming/comments/1la77oe/mastering_crud_operations_with_knexjs_and/
<!-- SC_OFF -->Knex.js is a powerful, open-source SQL query builder for Node.js that simplifies database interactions by allowing developers to write database queries using JavaScript. In this article, we'll explore how to perform CRUD (Create, Read, Update, Delete) and various other operations using Knex.js with a PostgreSQL database. <!-- SC_ON --> submitted by /u/ram-foss (https://www.reddit.com/user/ram-foss)
[link] (https://www.blackslate.io/articles/mastering-crud-operations-with-knex-js-and-postgresql) [comments] (https://www.reddit.com/r/programming/comments/1la77oe/mastering_crud_operations_with_knexjs_and/)
Everything You Always Wanted To Know About Mathematics | CMU Guide
https://www.reddit.com/r/programming/comments/1la5lmu/everything_you_always_wanted_to_know_about/
<!-- SC_OFF -->Everything You Always Wanted To Know About Mathematics | CMU Guide (https://macro.com/app/pdf/d98af547-f280-438a-8d01-5daaf2be8b80) <!-- SC_ON --> submitted by /u/LeveredRecap (https://www.reddit.com/user/LeveredRecap)
[link] (https://macro.com/app/pdf/d98af547-f280-438a-8d01-5daaf2be8b80) [comments] (https://www.reddit.com/r/programming/comments/1la5lmu/everything_you_always_wanted_to_know_about/)
Bypassing GitHub Actions policies in the dumbest way possible
https://www.reddit.com/r/programming/comments/1l9vlrd/bypassing_github_actions_policies_in_the_dumbest/
submitted by /u/intelw1zard (https://www.reddit.com/user/intelw1zard)
[link] (https://blog.yossarian.net/2025/06/11/github-actions-policies-dumb-bypass) [comments] (https://www.reddit.com/r/programming/comments/1l9vlrd/bypassing_github_actions_policies_in_the_dumbest/)