I will send you newest post from subreddit /r/programming
Terminals, TTY, PTY, and ANSI Escape Codes
https://www.reddit.com/r/programming/comments/1nu0lol/terminals_tty_pty_and_ansi_escape_codes/
submitted by /u/Helpful_Geologist430 (https://www.reddit.com/user/Helpful_Geologist430)
[link] (https://youtu.be/4GBp_WTG66Q) [comments] (https://www.reddit.com/r/programming/comments/1nu0lol/terminals_tty_pty_and_ansi_escape_codes/)
Editable pdf with disk access
https://www.reddit.com/r/programming/comments/1ntzd7l/editable_pdf_with_disk_access/
<!-- SC_OFF -->Is it possible to create a PDF with editable fields that can also access files on disk, such as images, graphics, etc.? Or do the two contradict each other due to the PDF's secure format? My closest solution is to create a fillable form and then create the PDF, as the idea is to optimize the format and only change the desired fields. But I don't know if there's a more consistent approach, or if this is possible... <!-- SC_ON --> submitted by /u/MinimumGap9692 (https://www.reddit.com/user/MinimumGap9692)
[link] (https://www.reddit.com/r/programming/submit/?type=LINK) [comments] (https://www.reddit.com/r/programming/comments/1ntzd7l/editable_pdf_with_disk_access/)
Intel's original 64bit extensions for x86
https://www.reddit.com/r/programming/comments/1ntsl3l/intels_original_64bit_extensions_for_x86/
submitted by /u/simon_o (https://www.reddit.com/user/simon_o)
[link] (https://soc.me/interfaces/intels-original-64bit-extensions-for-x86) [comments] (https://www.reddit.com/r/programming/comments/1ntsl3l/intels_original_64bit_extensions_for_x86/)
Built a File-to-File Streaming Pipeline with Kafka Connect
https://www.reddit.com/r/programming/comments/1nto2zd/built_a_filetofile_streaming_pipeline_with_kafka/
<!-- SC_OFF -->Hi everyone,
Thanks to the overwhelming response to my previous Kafka basics post, I decided to explore more advanced concepts, starting with Kafka Connect. I hope you find this blog insightful and enjoyable! If you’re new to Kafka, I encourage you to read this post and share your feedback, I’d love to hear your thoughts. Thank you! 😊 <!-- SC_ON --> submitted by /u/Dhairya-chauhan (https://www.reddit.com/user/Dhairya-chauhan)
[link] (https://open.substack.com/pub/memoizethebackend/p/kafka-connect-in-action-streaming?r=2n87ha&utm_campaign=post&utm_medium=web&showWelcomeOnShare=false) [comments] (https://www.reddit.com/r/programming/comments/1nto2zd/built_a_filetofile_streaming_pipeline_with_kafka/)
Release Orchestration: A Practical Guide for 2025
https://www.reddit.com/r/programming/comments/1ntmq69/release_orchestration_a_practical_guide_for_2025/
<!-- SC_OFF -->Hello everyone, I've been working on a brief series of articles about orchestration techniques for releases. I figured I'd post it here in case it helps anyone. The goal of the series is to provide a useful summary of various methods and strategies for planning releases in contemporary development settings. If you have any thoughts or experiences with release orchestration, please share them with us! <!-- SC_ON --> submitted by /u/LevelRelationship732 (https://www.reddit.com/user/LevelRelationship732)
[link] (https://www.dorokhovich.com/blog/release-orchestration?utm=reddit) [comments] (https://www.reddit.com/r/programming/comments/1ntmq69/release_orchestration_a_practical_guide_for_2025/)
What I Learned Building a Web-Native Programming Language
https://www.reddit.com/r/programming/comments/1ntkzfj/what_i_learned_building_a_webnative_programming/
<!-- SC_OFF -->Over the past few months, I set myself a challenge: could I design a programming language where web development is “built-in” at the syntax level? Instead of using a general-purpose language (Python, JS, etc.) plus a framework, I wanted something where HTML and CSS are first-class citizens. The experiment eventually became an alpha project I call Veyra, but the real value for me has been in the technical lessons learned along the way. 1. Writing a Lexer and Parser From Scratch I started with the basics: a lexer to tokenize the source code and a parser to build an AST. Lesson: error handling is harder than tokenization itself. A clear error message from the parser is worth more than fancy syntax features. I experimented with recursive descent parsing since the grammar is simple. 2. Making HTML and CSS Part of the Language Instead of embedding HTML as strings, I tried this kind of syntax: Copy code Veyra html { h1("Hello, world!") p("This is web-native syntax.") } The compiler converts these blocks into DOM-like structures under the hood. Lesson: Treating HTML as a first-class construct feels elegant, but it complicates the grammar. Balancing simplicity vs. expressiveness is tricky. 3. Designing a Package Manager I built a lightweight package tool (veyra-pm). Lesson: even a basic package manager quickly runs into dependency resolution issues. I had to decide early whether to reinvent or piggyback on Python’s ecosystem. 4. The Interpreter and Runtime The interpreter executes the AST directly. Lesson: performance is “good enough” for toy programs, but without optimization passes, it won’t scale. Designing a runtime that is both minimal and extensible is its own challenge. 5. Balancing Vision vs. Reality Vision: a “modern, web-native” language that reduces boilerplate. Reality: getting even a toy interpreter to run reliably takes weeks of debugging. The hardest part was not coding but deciding what not to include. Open Questions I’d love feedback from others who’ve tried building languages or runtimes: If you were designing a web-first language, how would you structure the syntax? Is it better to stay standalone or embrace interop with existing ecosystems (e.g., Python packages)? Where’s the sweet spot between “toy” and “usable” for new languages? If You’re Curious I’ve shared the code on GitHub (MIT licensed) and a PyPI package for experimentation: GitHub: https://github.com/nishal21/veyra PyPI: https://pypi.org/project/veyra/ It’s still very alpha (v0.1.1), but I’m continuing to iterate. TL;DR: Writing your own language is 20% syntax and 80% design tradeoffs. For me, the experiment has been a great way to learn about parsing, runtime design, and the challenges of building anything “web-native” from scratch. <!-- SC_ON --> submitted by /u/Radiant-Ad-9540 (https://www.reddit.com/user/Radiant-Ad-9540)
[link] (https://github.com/nishal21/veyra) [comments] (https://www.reddit.com/r/programming/comments/1ntkzfj/what_i_learned_building_a_webnative_programming/)
Why SW Architecture is Mostly Communication • David Whitney, Ian Cooper & Hannes Lowette
https://www.reddit.com/r/programming/comments/1ntiz7l/why_sw_architecture_is_mostly_communication_david/
submitted by /u/goto-con (https://www.reddit.com/user/goto-con)
[link] (https://youtu.be/VMmkHZ4wShA?list=PLEx5khR4g7PJozVmHNpQTVrk1QRC7YaJu) [comments] (https://www.reddit.com/r/programming/comments/1ntiz7l/why_sw_architecture_is_mostly_communication_david/)
This is actually a really good free workshop
https://www.reddit.com/r/programming/comments/1ntcenk/this_is_actually_a_really_good_free_workshop/
<!-- SC_OFF -->Free 80-minute online workshop called 'How to Understand the Value of Your Code' It covers: Frameworks to measure feature impact How to avoid drowning in meaningless metrics Practical tactics you can apply right away It’s interactive, led by an industry expert, and completely free. Good if you’ve ever had to explain why your team’s work matters to stakeholders. <!-- SC_ON --> submitted by /u/HDev- (https://www.reddit.com/user/HDev-)
[link] (https://leaddev.com/event/how-to-understand-the-value-of-your-code) [comments] (https://www.reddit.com/r/programming/comments/1ntcenk/this_is_actually_a_really_good_free_workshop/)
GTranslate - Translations at the speed of tought
https://www.reddit.com/r/programming/comments/1ntc2f4/gtranslate_translations_at_the_speed_of_tought/
<!-- SC_OFF -->GTranslate - Translate at the speed of tought An open-source, modern and convenience cross-platform application for translations at the speed of thought. Built with Rust Tokio Features Translate text to and from any language Secure auto-updater System Tray & Auto start on boot Available to Windows (MSI) MacOS Linux (beta, due to some Tauri limits) Install (https://gtranslate.app/) Source code (https://github.com/z3ntl3/gtranslate-app) <!-- SC_ON --> submitted by /u/Budget-Bicycle4121 (https://www.reddit.com/user/Budget-Bicycle4121)
[link] (https://gtranslate.app/) [comments] (https://www.reddit.com/r/programming/comments/1ntc2f4/gtranslate_translations_at_the_speed_of_tought/)
My Journey Into Tech
https://www.reddit.com/r/programming/comments/1ntb5u1/my_journey_into_tech/
submitted by /u/ranger0004 (https://www.reddit.com/user/ranger0004)
[link] (https://strider.hashnode.dev/my-journey-into-tech) [comments] (https://www.reddit.com/r/programming/comments/1ntb5u1/my_journey_into_tech/)
The easiest way to keep code and docs synced
https://www.reddit.com/r/programming/comments/1nsysen/the_easiest_way_to_keep_code_and_docs_synced/
<!-- SC_OFF -->One problem about coding and documentation is keeping your docs up-to-date, no developers likes documentation. Or even worse, knowing which and what parts out of thousands of docs to update. We are launching Drift AI soon. With every push to your main branch, we retrieve relevant documents, highlight and suggest edits to outdated parts, and tag the right engineer to approve the edits. No new platforms, we directly integrate with Confluence and everything is done in Confluence. You can grab your early access spot if you find this useful for you or your team. <!-- SC_ON --> submitted by /u/khalidd877 (https://www.reddit.com/user/khalidd877)
[link] (https://driftai.framer.website/) [comments] (https://www.reddit.com/r/programming/comments/1nsysen/the_easiest_way_to_keep_code_and_docs_synced/)
How to Stay Relevant as an Engineering Leader While Empowering Others
https://www.reddit.com/r/programming/comments/1nsxker/how_to_stay_relevant_as_an_engineering_leader/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://newsletter.eng-leadership.com/p/how-to-stay-relevant-as-an-engineering) [comments] (https://www.reddit.com/r/programming/comments/1nsxker/how_to_stay_relevant_as_an_engineering_leader/)
My early years as a programmer: 1997-2002
https://www.reddit.com/r/programming/comments/1nsx4o8/my_early_years_as_a_programmer_19972002/
<!-- SC_OFF -->I am a software industry veteran of soon to be 20 years. Here is part one of a series of blog posts where I share my journey in tech starting as a teenager in the late 90s starting on a graphing calculator. How did you get your start in programming? <!-- SC_ON --> submitted by /u/jkndrkn (https://www.reddit.com/user/jkndrkn)
[link] (https://mediumsecond.com/lost-at-the-beginning/) [comments] (https://www.reddit.com/r/programming/comments/1nsx4o8/my_early_years_as_a_programmer_19972002/)
I turned years of programming & IT absurdities into a satirical “dictionary” — AMA (indie published, out Sept 30, here till Oct 5)
https://www.reddit.com/r/programming/comments/1nsuqdw/i_turned_years_of_programming_it_absurdities_into/
<!-- SC_OFF -->Hey r/programming (https://www.reddit.com/r/programming), After a decade in tech, I did the only reasonable thing: collected all the jargon, Agile rituals, corpoland buzzwords, startup chaos, and AI hype… and turned them into a book-length satire. Think of it as a dictionary of survival for anyone who’s ever sat through a sprint planning that felt like group therapy, or watched a manager rename “bugs” into “undocumented features.” The book officially launches September 30th, and I went the full self-publishing route (handled everything myself except for layout/graphics, which I outsourced to a DTP specialist). I’ll be answering questions here all week until Oct 5 (longer if needed). Happy to chat about: Programming culture absurdities that made it into the book What it’s like to translate IT jargon into satire Indie publishing as a developer side quest Or just your favorite “WTF moment” from code reviews, deploys, and daily standups AMA! <!-- SC_ON --> submitted by /u/Inevitable-Field-501 (https://www.reddit.com/user/Inevitable-Field-501)
[link] (http://www.adamkorga.com/) [comments] (https://www.reddit.com/r/programming/comments/1nsuqdw/i_turned_years_of_programming_it_absurdities_into/)
Spider-Man: The Movie Game dissection project - Introduction
https://www.reddit.com/r/programming/comments/1nsu9jn/spiderman_the_movie_game_dissection_project/
submitted by /u/krystalgamer (https://www.reddit.com/user/krystalgamer)
[link] (https://krystalgamer.github.io/open-tobey-september-2025/) [comments] (https://www.reddit.com/r/programming/comments/1nsu9jn/spiderman_the_movie_game_dissection_project/)
[Release] virtualshell: Python ↔ PowerShell bridge with C++ backend (async, long-lived sessions)
https://www.reddit.com/r/programming/comments/1ntzy1r/release_virtualshell_python_powershell_bridge/
<!-- SC_OFF -->I've released the first version of virtualshell, a Python package that embeds a long-lived PowerShell process behind a C++17 / pybind11 extension. Why it matters: Normal subprocess.run(["pwsh", "-c", ...]) has cold-start overhead (~150–400 ms). This keeps a single PowerShell instance alive, so you can reuse modules, $env:*, and functions between calls. Async API: fire thousands of commands concurrently, results delivered via Futures or callbacks. Thin Python wrapper: all process and pipe I/O is handled in C++ for performance. Benchmarks (Win11, Python 3.13, single pwsh): Latency (tiny cmd): ~20 ms avg Throughput (async, window=64): ~175 cmd/s Heavy OUT (200×512B): ~84 cmd/s Sustained: 5000 async cmds in 54 s (0 errors, no hangs) Install (Windows x64, Python 3.8–3.13): pip install -i https://test.pypi.org/simple/ virtualshell==0.0.0 Code sample: from virtualshell import Shell with Shell(timeout_seconds=3) as sh: res = sh.execute("Write-Output 'hello world'") print(res.output.strip()) Repo: github.com/Chamoswor/virtualshell (https://github.com/Chamoswor/virtualshell) Linux build matrix exists but hasn’t been tested yet. Feedback / benchmarks on other systems would be very welcome. <!-- SC_ON --> submitted by /u/Chamoswor (https://www.reddit.com/user/Chamoswor)
[link] (https://github.com/Chamoswor/virtualshell) [comments] (https://www.reddit.com/r/programming/comments/1ntzy1r/release_virtualshell_python_powershell_bridge/)
The problem with Object Oriented Programming and Deep Inheritance
https://www.reddit.com/r/programming/comments/1nty75l/the_problem_with_object_oriented_programming_and/
submitted by /u/MinimumMagician5302 (https://www.reddit.com/user/MinimumMagician5302)
[link] (https://youtu.be/V372XIdtOQw) [comments] (https://www.reddit.com/r/programming/comments/1nty75l/the_problem_with_object_oriented_programming_and/)
Inside NVIDIA GPUs: Anatomy of high performance matmul kernels
https://www.reddit.com/r/programming/comments/1ntprvz/inside_nvidia_gpus_anatomy_of_high_performance/
submitted by /u/mttd (https://www.reddit.com/user/mttd)
[link] (https://www.aleksagordic.com/blog/matmul) [comments] (https://www.reddit.com/r/programming/comments/1ntprvz/inside_nvidia_gpus_anatomy_of_high_performance/)
Understanding New Turing Machine Results with Simple Programs and Fast Visualizations
https://www.reddit.com/r/programming/comments/1ntn8gy/understanding_new_turing_machine_results_with/
<!-- SC_OFF -->A new talk explains Busy Beaver results, shows how to compute 10↑↑15 in a short program, and shares techniques for efficiently visualizing Turing machines. <!-- SC_ON --> submitted by /u/carlk22 (https://www.reddit.com/user/carlk22)
[link] (https://www.youtube.com/watch?v=ec-ucXJ4x-0) [comments] (https://www.reddit.com/r/programming/comments/1ntn8gy/understanding_new_turing_machine_results_with/)
Subtleties of SQLite Indexes: Understanding Query Planner Quirks Yielded a 35% Speedup
https://www.reddit.com/r/programming/comments/1ntm6vo/subtleties_of_sqlite_indexes_understanding_query/
submitted by /u/emschwartz (https://www.reddit.com/user/emschwartz)
[link] (https://emschwartz.me/subtleties-of-sqlite-indexes/) [comments] (https://www.reddit.com/r/programming/comments/1ntm6vo/subtleties_of_sqlite_indexes_understanding_query/)
How Reference Counting Works Internally in Swift
https://www.reddit.com/r/programming/comments/1ntkr04/how_reference_counting_works_internally_in_swift/
submitted by /u/jacobs-tech-tavern (https://www.reddit.com/user/jacobs-tech-tavern)
[link] (https://blog.jacobstechtavern.com/p/swift-reference-counting) [comments] (https://www.reddit.com/r/programming/comments/1ntkr04/how_reference_counting_works_internally_in_swift/)
Write the "stupid" code
https://www.reddit.com/r/programming/comments/1ntexbp/write_the_stupid_code/
submitted by /u/GarethX (https://www.reddit.com/user/GarethX)
[link] (https://spikepuppet.io/posts/write-the-stupid-code/) [comments] (https://www.reddit.com/r/programming/comments/1ntexbp/write_the_stupid_code/)
Cumulative Statistics in PostgreSQL 18
https://www.reddit.com/r/programming/comments/1ntcblx/cumulative_statistics_in_postgresql_18/
submitted by /u/talktomeabouttech (https://www.reddit.com/user/talktomeabouttech)
[link] (https://www.data-bene.io/en/blog/cumulative-statistics-in-postgresql-18/) [comments] (https://www.reddit.com/r/programming/comments/1ntcblx/cumulative_statistics_in_postgresql_18/)
a good quality code?
https://www.reddit.com/r/programming/comments/1ntbea5/a_good_quality_code/
<!-- SC_OFF -->this is my first "algorithm" so any advice would be really useful, thank you <!-- SC_ON --> submitted by /u/Muhammed_FpI (https://www.reddit.com/user/Muhammed_FpI)
[link] (https://github.com/Naikhm/3EquationsSolver) [comments] (https://www.reddit.com/r/programming/comments/1ntbea5/a_good_quality_code/)
[JS/TS] For those who made a reactive library before, how to deal with reconciliation on array ordering.
https://www.reddit.com/r/programming/comments/1nszt1m/jsts_for_those_who_made_a_reactive_library_before/
<!-- SC_OFF -->I'm doing a small reactive library ( no VDOM, direct manipulation and quite "mechanical" as it will be used for a generator later but still ergonomic enough to write by hand ) for fun and learning purpose, to learn how a reactive library works and also later how a compiler and generator works. So the first step I'm tackling is the actual reactive library, for now I got to a point where I think it works well and has hierarchy and cleanups when it is supposed to, and I made 2 small helpers for control ( when and each ) but, as of now the each does not care about ordering and I'm not sure how would it be able to change the order tbh, at least not right now. So for anyone that did one, how did you do it? EDIT: I changed so any control part is now tied with the dom and are less generic, I made each work in a way that nodes can be reused and using the dom to reorder with a list. Obs: there is a bug where if you try to add another item to the array that has the same key it does not get added because it thinks the component already exist. <!-- SC_ON --> submitted by /u/Gustavo_Fenilli (https://www.reddit.com/user/Gustavo_Fenilli)
[link] (https://github.com/fenilli/nero/blob/main/lib/runtime/control.ts) [comments] (https://www.reddit.com/r/programming/comments/1nszt1m/jsts_for_those_who_made_a_reactive_library_before/)
just nuked 120+ unused npm deps from a huge Nx monorepo
https://www.reddit.com/r/programming/comments/1nsymn6/just_nuked_120_unused_npm_deps_from_a_huge_nx/
<!-- SC_OFF -->just nuked 120+ unused npm deps from a huge Nx monorepo using Knip. shaved a whole minute off yarn install. wrote up the whole process, including how to avoid false positives. if you got npm bloat, this is for you <!-- SC_ON --> submitted by /u/Beautiful_Spot5404 (https://www.reddit.com/user/Beautiful_Spot5404)
[link] (https://johnjames.blog/posts/cleaning-house-in-nx-monorepo-how-i-removed-120-unused-deps-safely) [comments] (https://www.reddit.com/r/programming/comments/1nsymn6/just_nuked_120_unused_npm_deps_from_a_huge_nx/)
Companies Should Stop Obsessing Over AI Tools And Do This Instead
https://www.reddit.com/r/programming/comments/1nsxk7q/companies_should_stop_obsessing_over_ai_tools_and/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://www.youtube.com/watch?v=l_hkOPUw-oI) [comments] (https://www.reddit.com/r/programming/comments/1nsxk7q/companies_should_stop_obsessing_over_ai_tools_and/)
[OC] Lessons learned from profiling Flink Apps
https://www.reddit.com/r/programming/comments/1nsws5x/oc_lessons_learned_from_profiling_flink_apps/
submitted by /u/prat0318 (https://www.reddit.com/user/prat0318)
[link] (https://blog.prat0318.com/2025/09/5-lessons-from-profiling-flink.html) [comments] (https://www.reddit.com/r/programming/comments/1nsws5x/oc_lessons_learned_from_profiling_flink_apps/)
Why Python is the Best Programming Language to Learn as a Beginner?
https://www.reddit.com/r/programming/comments/1nsun8r/why_python_is_the_best_programming_language_to/
<!-- SC_OFF -->I want to write blog posts regarding Python, ML and DL, and this is my first blog post. Do you guys think i should do this long term? also appreciate some support !! he he <!-- SC_ON --> submitted by /u/Successful-Ad2549 (https://www.reddit.com/user/Successful-Ad2549)
[link] (https://noobsplitsnews.blogspot.com/2025/09/why-python-is-best-programming-language.html) [comments] (https://www.reddit.com/r/programming/comments/1nsun8r/why_python_is_the_best_programming_language_to/)
How should I get into programming?
https://www.reddit.com/r/programming/comments/1nst9ah/how_should_i_get_into_programming/
<!-- SC_OFF -->I’ve been coding with scratch on and off for the past ~4-5 years, but I really want to try to buckle down and make a full, cool game on like unity or UE or something. How should I go about doing that? I did take a coding class last year for python, so i kind of know the basics, but I really wanna give it a real try. Any tips? <!-- SC_ON --> submitted by /u/No-Subject-619 (https://www.reddit.com/user/No-Subject-619)
[link] (http://wikipedia.com/programming) [comments] (https://www.reddit.com/r/programming/comments/1nst9ah/how_should_i_get_into_programming/)