I will send you newest post from subreddit /r/programming
The new features in JDK 25
https://www.reddit.com/r/programming/comments/1l6xwja/the_new_features_in_jdk_25/
<!-- SC_OFF -->Java Development Kit (JDK) 25, a planned long-term support release of standard Java due in September 2025, has reached the initial rampdown or bug-fixing phase with 18 features. The final feature, added June 5, is an enhancement to the JDK Flight Recorder (JFR) to capture CPU-time profiling information on Linux. Early access builds of JDK 25 can be downloaded from jdk.java.net. The features previously slated for JDK 25 include: a preview of PEM (Privacy-Enhanced Mail) encodings of cryptographic objects, the Shenandoah garbage collector, ahead-of-time command-line ergonomics, ahead-of-time method profiling, JDK Flight Recorder (JFR) cooperative sampling, JFR method timing and tracing, compact object headers, a third preview of primitive types in patterns, instanceof, and switch. <!-- SC_ON --> submitted by /u/Choobeen (https://www.reddit.com/user/Choobeen)
[link] (https://www.infoworld.com/article/3846172/jdk-25-the-new-features-in-java-25.html) [comments] (https://www.reddit.com/r/programming/comments/1l6xwja/the_new_features_in_jdk_25/)
Engineering With ROR: Digest #8
https://www.reddit.com/r/programming/comments/1l6pw9q/engineering_with_ror_digest_8/
submitted by /u/Educational-Ad2036 (https://www.reddit.com/user/Educational-Ad2036)
[link] (https://monorails.substack.com/p/engineering-with-ror-digest-8) [comments] (https://www.reddit.com/r/programming/comments/1l6pw9q/engineering_with_ror_digest_8/)
I Wrote a Short Story About Dev Journey
https://www.reddit.com/r/programming/comments/1l69hiz/i_wrote_a_short_story_about_dev_journey/
submitted by /u/NobleMission (https://www.reddit.com/user/NobleMission)
[link] (https://kaskadia.xyz/notes-from-terminal-between-podman-coffee-and-container-0e05859e82a4?sk=4f1f73ac4d5e4a066fbf4d9a3a367179) [comments] (https://www.reddit.com/r/programming/comments/1l69hiz/i_wrote_a_short_story_about_dev_journey/)
🗺️ The 2025 BACKEND DEVELOPER's roadmap: Don't fall behind in tech, master these:
https://www.reddit.com/r/programming/comments/1l68fs9/the_2025_backend_developers_roadmap_dont_fall/
submitted by /u/strategizeyourcareer (https://www.reddit.com/user/strategizeyourcareer)
[link] (https://strategizeyourcareer.com/p/the-2025-backend-developers-roadmap) [comments] (https://www.reddit.com/r/programming/comments/1l68fs9/the_2025_backend_developers_roadmap_dont_fall/)
Im using an app called acode anyone had a community for that app
https://www.reddit.com/r/programming/comments/1l67j3s/im_using_an_app_called_acode_anyone_had_a/
submitted by /u/ExpertResort9303 (https://www.reddit.com/user/ExpertResort9303)
[link] (https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://play.google.com/store/apps/details%3Fid%3Dcom.foxdebug.acodefree%26hl%3Did%26referrer%3Dutm_source%253Dgoogle%2526utm_medium%253Dorganic%2526utm_term%253Dacode%26pcampaignid%3DAPPU_1_WklFaLuVOvXg4-EP542qqAY&ved=2ahUKEwi7qsDUs-GNAxV18DgGHeeGCmUQ5YQBegQIHBAC&usg=AOvVaw1mp2CzvMGEdUQxSzPJRpcY) [comments] (https://www.reddit.com/r/programming/comments/1l67j3s/im_using_an_app_called_acode_anyone_had_a/)
I built a web-based encryption implementation I always wanted to put together without writing a single line of code.
https://www.reddit.com/r/programming/comments/1l65lou/i_built_a_webbased_encryption_implementation_i/
submitted by /u/lucid_dreaming_quest (https://www.reddit.com/user/lucid_dreaming_quest)
[link] (https://clip.callsyne.com/encryption-guide) [comments] (https://www.reddit.com/r/programming/comments/1l65lou/i_built_a_webbased_encryption_implementation_i/)
Every AI coding agent claims "lightning-fast code understanding with vector search." I tested this on Apollo 11's code and found the catch.
https://www.reddit.com/r/programming/comments/1l612k0/every_ai_coding_agent_claims_lightningfast_code/
<!-- SC_OFF -->I've been seeing tons of coding agents that all promise the same thing: they index your entire codebase and use vector search for "AI-powered code understanding." With hundreds of these tools available, I wanted to see if the indexing actually helps or if it's just marketing. Instead of testing on some basic project, I used the Apollo 11 guidance computer source code. This is the assembly code that landed humans on the moon. I tested two types of AI coding assistants: - Indexed agent: Builds a searchable index of the entire codebase on remote servers, then uses vector search to instantly find relevant code snippets - Non-indexed agent: Reads and analyzes code files on-demand, no pre-built index I ran 8 challenges on both agents using the same language model (Claude Sonnet 4) and same unfamiliar codebase. The only difference was how they found relevant code. Tasks ranged from finding specific memory addresses to implementing the P65 auto-guidance program that could have landed the lunar module. The indexed agent won the first 7 challenges: It answered questions 22% faster and used 35% fewer API calls to get the same correct answers. The vector search was finding exactly the right code snippets while the other agent had to explore the codebase step by step. Then came challenge 8: implement the lunar descent algorithm. Both agents successfully landed on the moon. But here's what happened. The non-indexed agent worked slowly but steadily with the current code and landed safely. The indexed agent blazed through the first 7 challenges, then hit a problem. It started generating Python code using function signatures that existed in its index but had been deleted from the actual codebase. It only found out about the missing functions when the code tried to run. It spent more time debugging these phantom APIs than the "No index" agent took to complete the whole challenge. This showed me something that nobody talks about when selling indexed solutions: synchronization problems. Your code changes every minute and your index gets outdated. It can confidently give you wrong information about latest code. I realized we're not choosing between fast and slow agents. It's actually about performance vs reliability. The faster response times don't matter if you spend more time debugging outdated information. Bottom line: Indexed agents save time until they confidently give you wrong answers based on outdated information. <!-- SC_ON --> submitted by /u/West-Chocolate2977 (https://www.reddit.com/user/West-Chocolate2977)
[link] (https://forgecode.dev/blog/index-vs-no-index-ai-code-agents/) [comments] (https://www.reddit.com/r/programming/comments/1l612k0/every_ai_coding_agent_claims_lightningfast_code/)
[Seeking Advice] 5 Years In, Solo SaaS Founder in Survival Mode
https://www.reddit.com/r/programming/comments/1l6006u/seeking_advice_5_years_in_solo_saas_founder_in/
<!-- SC_OFF -->**Didn't know what to put for link... haha** Hey all! I’m the founder of a bootstrapped SaaS company built over the last few years, focused on dropshipping automation and I’m in survival mode right now. Since the beginning, I’ve worked with a small offshore dev team. They were organized and generally reliable, but communication was always indirect. I’ve never actually spoken with the developers directly. Everything went through project managers. This quickly became a game of telephone, where important details got lost along the way. Small bugs would eventually turn into much bigger problems. Feature launches were slow and often unstable. And as a non-technical founder, I lacked the context to challenge things early on. I assumed this was just how software teams worked. Even then, I started to notice a recurring pattern: we were cleaning spills, not patching holes. The same bugs and breakages kept resurfacing. But because I didn’t have technical experience, I couldn’t fully understand how deep the problems were. In hindsight, I should’ve made the call to find a new dev team earlier but I lacked the clarity and confidence at the time. As time went on and our budget shrank, I started to notice a shift:
The original devs stopped treating the work with the same care. Critical bugs were handled with less care. Fixes were rushed. Dangerous core issues, the kind that could undermine trust with users, began appearing more frequently. I’ve raised these concerns, but the response has been minimal. They point to the budget, which I understand, we’re not paying what we used to. But at the same time, the stakes are higher than ever, and I’m worried one more mistake could seriously hurt, or even kill, the company. “lol welcome to the world of being a founder”...yes yes I understand. Earlier this year, I started onboarding a junior developer. Someone domestic, young, hungry, and willing to work. Initially, I was optimistic. It felt like a reset. One clear upside has been communication: I actually talk to him daily, and we get insight into how things are being built. There’s a sense of visibility and shared learning I never had before. That said, I know this isn’t ideal. The codebase is massive, built over many years, integrating PHP Laravel, React, MySQL, Redis, Elasticsearch, Chromium automation, and 3rd party APIs. Documentation is thin. Dev environments aren’t standardized. It’s a tough place for any junior to ramp up. I also understand that if I were to hire another offshore senior dev, I’d likely end up with the same quality issues I’ve already dealt with. A domestic dev whom I can groom and help grow into owning the platform long-term feels like a better path. More alignment, more accountability but also riskier in the short-term given the ramp-up and budget. And I get that, I’m not naive to the complexity. I’m also taking steps to close my own gap. I’m actively learning the tech stack (Laravel, React, MySQL, etc.) so I can make better decisions, support my team, and eventually lead dev internally. I know it’ll take a long time to learn (probably too long to be a short-term solution) but I need the visibility and clarity that only comes from getting closer to the code. I admire stories like Elon stepping into chief engineer mode and while I’m not building rockets, I resonate with the mindset. But I’m also trying to stay grounded. There are real risks here. And the clock is ticking. Where I'm at now: We’re transitioning away from the original devs, but they still maintain core parts of the platform, which creates risk. The new junior dev is engaged and communicative, but learning curve is steep. Need him to be able to own most of the platform within the next 3-6 months (while keeping previous devs on retainer for knowledge gaps and historical code
Asp.net Blazor Book or Course Suggestion
https://www.reddit.com/r/programming/comments/1l5quxg/aspnet_blazor_book_or_course_suggestion/
<!-- SC_OFF -->Hi everyone
What books would you suggest for studying asp.netr technologies <!-- SC_ON --> submitted by /u/International_Roll19 (https://www.reddit.com/user/International_Roll19)
[link] (http://asp.net/) [comments] (https://www.reddit.com/r/programming/comments/1l5quxg/aspnet_blazor_book_or_course_suggestion/)
The Problem with Micro Frontends
https://www.reddit.com/r/programming/comments/1l5otzy/the_problem_with_micro_frontends/
<!-- SC_OFF -->Not mine, but interesting thoughts. Some ppl at the company I work for think this is the way forwards.. <!-- SC_ON --> submitted by /u/BasieP2 (https://www.reddit.com/user/BasieP2)
[link] (https://blog.stackademic.com/the-problem-with-micro-frontends-32c6b9597ba7) [comments] (https://www.reddit.com/r/programming/comments/1l5otzy/the_problem_with_micro_frontends/)
“I Read All Of Cloudflare's Claude-Generated Commits”
https://www.reddit.com/r/programming/comments/1l5fllu/i_read_all_of_cloudflares_claudegenerated_commits/
submitted by /u/_atomlib (https://www.reddit.com/user/_atomlib)
[link] (https://www.maxemitchell.com/writings/i-read-all-of-cloudflares-claude-generated-commits/) [comments] (https://www.reddit.com/r/programming/comments/1l5fllu/i_read_all_of_cloudflares_claudegenerated_commits/)
Machine Code Isn't Scary
https://www.reddit.com/r/programming/comments/1l5ek2x/machine_code_isnt_scary/
submitted by /u/namanyayg (https://www.reddit.com/user/namanyayg)
[link] (https://jimmyhmiller.com/machine-code-isnt-scary) [comments] (https://www.reddit.com/r/programming/comments/1l5ek2x/machine_code_isnt_scary/)
GPU Memory Consistency: Specifications, Testing, and Opportunities for Performance Tooling
https://www.reddit.com/r/programming/comments/1l5cr88/gpu_memory_consistency_specifications_testing_and/
submitted by /u/abhi9u (https://www.reddit.com/user/abhi9u)
[link] (https://www.sigarch.org/gpu-memory-consistency-specifications-testing-and-opportunities-for-performance-tooling/) [comments] (https://www.reddit.com/r/programming/comments/1l5cr88/gpu_memory_consistency_specifications_testing_and/)
Falsehoods Programmers Believe About Aviation
https://www.reddit.com/r/programming/comments/1l5bzox/falsehoods_programmers_believe_about_aviation/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://flightaware.engineering/falsehoods-programmers-believe-about-aviation/) [comments] (https://www.reddit.com/r/programming/comments/1l5bzox/falsehoods_programmers_believe_about_aviation/)
I made a free, AI-powered Python script to analyze and review any project.
https://www.reddit.com/r/programming/comments/1l5agfn/i_made_a_free_aipowered_python_script_to_analyze/
<!-- SC_OFF -->Hey everyone, 👋 I wanted to share a free and open-source tool I built that has become invaluable to my workflow. It started as a simple script to visualize my project structure and accidentally evolved into an AI-powered code analysis dashboard. What My Project Does Project-Analyzer is a command-line tool that gives you a high-level overview of any codebase. It can generate a file tree, report test coverage, and use AI to provide code reviews and summaries. Core Features: 🌳 Default: Gives you a clean, color-coded file tree. 📊 --coverage: For Jest projects, it runs your tests and shows the coverage percentage. 🔎 --review: Uses AI to give you instant feedback on code quality and suggest refactors. 📖 --summarize: Uses AI to explain what your most complex files do. 🤖 How the AI Works (You have options!): * Google Gemini API: The default mode uses a Gemini API key. For this tool's usage, it falls well within the free tier limits. * Your Own Local Models: The script can easily be pointed to your own local server (like LM Studio or Ollama) to use any model you want, completely offline. Target Audience This tool is for any developer who wants to quickly understand a new or old codebase. * It's great for onboarding to a new project. * It's useful as a personal code review assistant before you commit your code. * While it's a robust tool, I'd consider it beta/hobbyist-ready, not for mission-critical production pipelines without further testing. Comparison to Existing Alternatives Compared to tree: It goes far beyond a simple file listing by adding line counts, size warnings, and intelligent filtering of node_modules and .gitignore patterns. Compared to cloc (Count Lines of Code): While cloc is excellent for pure statistics, my tool integrates this with AI-powered qualitative analysis (--review and --summarize) and test coverage orchestration. Compared to AI in your IDE (like Copilot): This tool operates on the entire project level, identifying the most complex files for you to focus on, rather than requiring you to analyze files one by one. It's designed for project-wide insights. I've found it to be a real game-changer for my workflow. The project is fully open-sourced on GitHub. GitHub Link: 👉 https://github.com/Jhn-git/Project-Analyzer Here's a GIF of the --review output: 📸 https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExaTJiaGkzYWp2dWQwdGVqeWZ1bjlucTBmc2p6a3ZycWl6MXZjc28xeCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/PHkM08aRGZn2PpTzM1/giphy.gif Contributions and ideas are always welcome on GitHub. Hope you find it useful! 🎉 <!-- SC_ON --> submitted by /u/thewalkers060292 (https://www.reddit.com/user/thewalkers060292)
[link] (https://github.com/Jhn-git/Project-Analyzer) [comments] (https://www.reddit.com/r/programming/comments/1l5agfn/i_made_a_free_aipowered_python_script_to_analyze/)
Node.js Interview Q&A: Day 9
https://www.reddit.com/r/programming/comments/1l6snqf/nodejs_interview_qa_day_9/
submitted by /u/MysteriousEye8494 (https://www.reddit.com/user/MysteriousEye8494)
[link] (https://medium.com/devinsight/node-js-interview-q-a-day-9-1f49c4074f6c) [comments] (https://www.reddit.com/r/programming/comments/1l6snqf/nodejs_interview_qa_day_9/)
7 years of development: discipline in software engineering
https://www.reddit.com/r/programming/comments/1l6dem0/7_years_of_development_discipline_in_software/
submitted by /u/fossable (https://www.reddit.com/user/fossable)
[link] (https://www.fossable.org/projects/sandpolis/7-years-of-development/) [comments] (https://www.reddit.com/r/programming/comments/1l6dem0/7_years_of_development_discipline_in_software/)
The Programmer Who Spoke to God Through Code
https://www.reddit.com/r/programming/comments/1l698f4/the_programmer_who_spoke_to_god_through_code/
submitted by /u/midowills (https://www.reddit.com/user/midowills)
[link] (https://www.youtube.com/watch?v=ahywW6jUJyI) [comments] (https://www.reddit.com/r/programming/comments/1l698f4/the_programmer_who_spoke_to_god_through_code/)
Angular Interview Q&A: Day 15
https://www.reddit.com/r/programming/comments/1l684xm/angular_interview_qa_day_15/
submitted by /u/MysteriousEye8494 (https://www.reddit.com/user/MysteriousEye8494)
[link] (https://medium.com/devinsight/angular-interview-q-a-day-15-9bb82fce2104) [comments] (https://www.reddit.com/r/programming/comments/1l684xm/angular_interview_qa_day_15/)
Google AdSense Rejected My Next.js Website for "Low Value Content"
https://www.reddit.com/r/programming/comments/1l663jm/google_adsense_rejected_my_nextjs_website_for_low/
<!-- SC_OFF -->Hello everyone, I’m reaching out because I’ve hit a bit of a roadblock with Google AdSense and could really use your insights. I’ve recently built a website, randomfungenerator.com (https://randomfungenerator.com/), using Next.js, and applied for Google AdSense around 2-3 months ago. Despite the site having a decent amount of content, Google AdSense rejected my application twice now, citing “Low Value Content” both times. Here’s a bit more context: Website Overview: The site is a random fun generator, which means each time a user visits, they are auto-redirected to a random category (e.g., jokes, trivia, memes, etc.). I thought this would make it fun and engaging for visitors. Google AdSense Rejection: The rejection notice mentioned "Low Value Content", and after the first rejection, I made some updates to the site, added more content, and re-applied. After waiting another month, I received the same rejection. I stumbled upon a StackOverflow answer (this one (https://stackoverflow.com/a/72918164)) that mentions site traffic could be an issue. Since my site is relatively new, could the low traffic be the reason for the rejection? Also, I have an auto-redirect feature that sends users to a random category upon visiting. Could this be causing issues with AdSense’s review process? I wonder if the random nature of the site might confuse AdSense's automated systems or lower its perceived content quality. Here’s where I need your help: Traffic: Does low site traffic typically play a role in AdSense rejection? If so, how can I increase it organically? Redirect Feature: Could the auto-redirecting nature of the site be a problem for AdSense? Any recommendations on how to improve or tweak this feature to make it more AdSense-friendly? Content Quality: What steps can I take to improve the perceived content value? I’m open to any suggestions on content strategies, SEO, or anything else that could help. AdSense Tips: Lastly, if anyone has tips or advice on how I can improve my chances of getting approved for AdSense, I would greatly appreciate it! Also cross-posting this in different communities if I can, as I believe some of you might have had similar experiences with Next.js and AdSense. TL;DR: Applied for Google AdSense twice for my Next.js site (randomfungenerator.com (https://randomfungenerator.com/)) but got rejected both times for “Low Value Content.” The site auto-redirects to a random category. Could low traffic or the redirect feature be the problem? Any tips to get AdSense approved? Thanks in advance for any help or guidance you can provide! 😊 <!-- SC_ON --> submitted by /u/subedisid (https://www.reddit.com/user/subedisid)
[link] (https://randomfungenerator.com/) [comments] (https://www.reddit.com/r/programming/comments/1l663jm/google_adsense_rejected_my_nextjs_website_for_low/)
Let's make a game! 272: Moving the player character
https://www.reddit.com/r/programming/comments/1l61prk/lets_make_a_game_272_moving_the_player_character/
submitted by /u/apeloverage (https://www.reddit.com/user/apeloverage)
[link] (https://www.youtube.com/watch?v=pgEDm8NKno0) [comments] (https://www.reddit.com/r/programming/comments/1l61prk/lets_make_a_game_272_moving_the_player_character/)
context). I'm learning Laravel, React, MySQL, etc. to understand the system at a functional level and eventually lead or support dev directly, more long term solution. Our budget is a fraction of what it once was, so options are limited, but I’m trying to make the best of what’s left. I’m looking for insight on: How to transition dev teams without breaking core stability? How do you prioritize and triage when bugs, tech debt, and feature needs are all bottlenecked? How do you avoid a fatal mistake when you need continued maintenance but don’t fully trust the hands maintaining it? How do you mentally and strategically stay grounded when learning on the fly under high stakes? If you’ve been through anything similar or have any advice in general, I’d really appreciate hearing about it. I’m not looking to scale or chase growth right now. I just want to stabilize, rebuild trust, and keep the lights on. (lol welcome to the world of being a founder) Thanks for reading! <!-- SC_ON --> submitted by /u/Otherwise-Film-5115 (https://www.reddit.com/user/Otherwise-Film-5115)
[link] (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions) [comments] (https://www.reddit.com/r/programming/comments/1l6006u/seeking_advice_5_years_in_solo_saas_founder_in/)
Why AI Agents Need a New Protocol (MCP)
https://www.reddit.com/r/programming/comments/1l5vrcg/why_ai_agents_need_a_new_protocol_mcp/
submitted by /u/Weary-Database-8713 (https://www.reddit.com/user/Weary-Database-8713)
[link] (https://glama.ai/blog/2025-06-06-mcp-vs-api) [comments] (https://www.reddit.com/r/programming/comments/1l5vrcg/why_ai_agents_need_a_new_protocol_mcp/)
Why you need to de-specialize
https://www.reddit.com/r/programming/comments/1l5qk6l/why_you_need_to_despecialize/
<!-- SC_OFF -->There has been admittedly a relationship between the level of expertise in workforce and the advancement of that civilization. However, I believe specialization in the way that is practiced today, is not a future proof strategy for engineers anymore and the suggestions from the last decade are not applicable anymore to how this space is changing. Here is a provocative thought: Tunnel vision is a condition of narrowing the visual field which medically is categorized as a disease and a partial blindness. This seems like a relatively fair analogy to how specialization works. The narrower your expertise, the easier it is to automate or replace your role entirely. (Please click on the link to read the full article, thanks!) <!-- SC_ON --> submitted by /u/Crazy-Bee-55 (https://www.reddit.com/user/Crazy-Bee-55)
[link] (https://futurecode.substack.com/p/why-you-need-to-de-specialize) [comments] (https://www.reddit.com/r/programming/comments/1l5qk6l/why_you_need_to_despecialize/)
How Feature Flags Enable Safer, Faster, and Controlled Rollouts
https://www.reddit.com/r/programming/comments/1l5ot99/how_feature_flags_enable_safer_faster_and/
submitted by /u/scalablethread (https://www.reddit.com/user/scalablethread)
[link] (https://newsletter.scalablethread.com/p/how-feature-flags-enable-safer-faster) [comments] (https://www.reddit.com/r/programming/comments/1l5ot99/how_feature_flags_enable_safer_faster_and/)
Optimizations with Zig
https://www.reddit.com/r/programming/comments/1l5fa5x/optimizations_with_zig/
submitted by /u/Retro_Dev_256 (https://www.reddit.com/user/Retro_Dev_256)
[link] (https://alloc.dev/2025/06/07/zig_optimization) [comments] (https://www.reddit.com/r/programming/comments/1l5fa5x/optimizations_with_zig/)
How Red Hat just quietly, radically transformed enterprise server Linux
https://www.reddit.com/r/programming/comments/1l5ejbk/how_red_hat_just_quietly_radically_transformed/
submitted by /u/namanyayg (https://www.reddit.com/user/namanyayg)
[link] (https://www.zdnet.com/article/how-red-hat-just-quietly-radically-transformed-enterprise-server-linux/) [comments] (https://www.reddit.com/r/programming/comments/1l5ejbk/how_red_hat_just_quietly_radically_transformed/)
CRDTs #4: Convergence, Determinism, Lower Bounds and Inflation
https://www.reddit.com/r/programming/comments/1l5c02g/crdts_4_convergence_determinism_lower_bounds_and/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://jhellerstein.github.io/blog/crdt-inflationary/) [comments] (https://www.reddit.com/r/programming/comments/1l5c02g/crdts_4_convergence_determinism_lower_bounds_and/)
Loading Native Postgres Extensions
https://www.reddit.com/r/programming/comments/1l5aq46/loading_native_postgres_extensions/
submitted by /u/LiquidataDaylon (https://www.reddit.com/user/LiquidataDaylon)
[link] (https://www.dolthub.com/blog/2025-06-06-loading-native-extensions/) [comments] (https://www.reddit.com/r/programming/comments/1l5aq46/loading_native_postgres_extensions/)
Exploring Apache Kafka Internals and Codebase
https://www.reddit.com/r/programming/comments/1l50ala/exploring_apache_kafka_internals_and_codebase/
submitted by /u/Active-Fuel-49 (https://www.reddit.com/user/Active-Fuel-49)
[link] (https://cefboud.com/posts/exploring-kafka-internals/) [comments] (https://www.reddit.com/r/programming/comments/1l50ala/exploring_apache_kafka_internals_and_codebase/)