Reddit Programming – Telegram
Reddit Programming
211 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
COM Like a Bomb: Rust Outlook Add-in
https://www.reddit.com/r/programming/comments/1pj6huh/com_like_a_bomb_rust_outlook_addin/

<!-- SC_OFF -->A short write-up on implementing a COM integration for Outlook in Rust. <!-- SC_ON --> submitted by /u/urandomd (https://www.reddit.com/user/urandomd)
[link] (https://tritium.legal/blog/outlook) [comments] (https://www.reddit.com/r/programming/comments/1pj6huh/com_like_a_bomb_rust_outlook_addin/)
Reverse Engineering Malicious Visual Studio Code Extension DarkGPT
https://www.reddit.com/r/programming/comments/1pj7gqn/reverse_engineering_malicious_visual_studio_code/

<!-- SC_OFF -->Malicious extensions are lurking in the Visual Studio Code marketplace. In this case, we discover and analyze DarkGPT, a Visual Studio Code extension that exploits DLL hijacking to load malicious code through a signed Windows executable. The payload appears to impact only Windows machines. Known malicious extensions: EffetMer.darkgpt BigBlack.codo-ai ozz3dev.bitcoin-auto-trading Malicious code in open source packages are not new. However, there is an interesting technique in this sample. The attackers leveraged a signed Windows executable (Lightshot.exe) as a trusted host process to deliver a malicious DLL (Lightshot.dll) loaded by the exe by default. Blog link: https://safedep.io/dark-gpt-vscode-malicious-extension/ <!-- SC_ON --> submitted by /u/N1ghtCod3r (https://www.reddit.com/user/N1ghtCod3r)
[link] (https://safedep.io/dark-gpt-vscode-malicious-extension/) [comments] (https://www.reddit.com/r/programming/comments/1pj7gqn/reverse_engineering_malicious_visual_studio_code/)
Why write engineering blogs?
https://www.reddit.com/r/programming/comments/1pja0sd/why_write_engineering_blogs/

<!-- SC_OFF -->Responses from antirez, Charity Majors, Jeff Atwood, Gunnar Morling, Eric Lippert, Glauber Costa, Thorsten Ball... <!-- SC_ON --> submitted by /u/swdevtest (https://www.reddit.com/user/swdevtest)
[link] (https://writethatblog.substack.com/p/why-write-engineering-blogs) [comments] (https://www.reddit.com/r/programming/comments/1pja0sd/why_write_engineering_blogs/)
How we built single pass efficient faceted search inside PostgreSQL.
https://www.reddit.com/r/programming/comments/1pjebuz/how_we_built_single_pass_efficient_faceted_search/

<!-- SC_OFF -->We just updated `pg_search` to support faceted search 👀 It uses a custom window function, hooking the planner and using a custom scan so that all the work (search and aggregation) gets pushed down into a single pass of our BM25 index (which is based on Tantivy). Since the index has a columnar component, we can compute counts efficiently and return them as JSON alongside the ranked results. <!-- SC_ON --> submitted by /u/jamesgresql (https://www.reddit.com/user/jamesgresql)
[link] (https://www.paradedb.com/blog/faceting) [comments] (https://www.reddit.com/r/programming/comments/1pjebuz/how_we_built_single_pass_efficient_faceted_search/)
I analyzed 500 freelance jobs in Q4 2025. How the "Junior Specialist" is growing
https://www.reddit.com/r/programming/comments/1pjgtnz/i_analyzed_500_freelance_jobs_in_q4_2025_how_the/

<!-- SC_OFF -->I scraped data from 500 completed contracts on major freelance platforms (Upwork/Toptal) from November 2025 to see what’s going on and I found some interesting stuff. My Findings: Pure "Frontend" is a race to the bottom: Simple React/HTML/CSS jobs have plummeted in value ($20 – 40/hr) because AI generates UI too well. The "Integration" Premium: The highest paying junior-accessible roles ($80+/hr) are now "Glue Code" jobs. Connecting OpenAI API to Airtable, Stripe to Discord. The "Agentic" Shift: Businesses want Agents that run autonomously 24/7. The "Stack" has changed:
If you are building a portfolio in late 2025 to get hired, and you are building a "To-Do List" or a "Weather App," or even grinding leetcode, please stop. Recruiters and Clients want to see: Headless Browsers: (Playwright/Puppeteer) for data gathering. Vector DBs: (Pinecone/Weaviate) for RAG apps. Webhooks: Handling real-time data events. I dive deeper into this on my Medium article about the specific projects that are converting in 2025/26, including a Python snippet for a "Lead Gen Bot" that you can use to find your first client. <!-- SC_ON --> submitted by /u/Peach_Baker (https://www.reddit.com/user/Peach_Baker)
[link] (https://medium.com/@jameshugo598/the-junior-dev-isnt-dead-it-just-became-a-junior-specialists-role-6ef1a0e3d910) [comments] (https://www.reddit.com/r/programming/comments/1pjgtnz/i_analyzed_500_freelance_jobs_in_q4_2025_how_the/)
EventSQL: events over SQL
https://www.reddit.com/r/programming/comments/1pjvjqh/eventsql_events_over_sql/

<!-- SC_OFF -->Events, and messages more broadly, are a battle-tested way of component to component, process to process, and/or application to application communication. In this approach, when something has happened, we publish an associated event. In general, events should inform us that something has happened. Related, there are Commands that request something more directly from another, not specified, process; they might as well be called a certain type of Events, but let's not split hair over semantics here. With Commands, it is mostly not that something has happened, but that something should happen as a result of command publication. Events are a pretty neat and handy way of having decoupled communication. The problem is that in most cases, if we do not publish them in-memory, inside a single process, there must be an additional component running on our infrastructure that provides this functionality. There are a slew of them; Apache Kafka, RabbitMQ, Apache Pulsar, Amazon SQS, Amazon SNS and Google Cloud Pub/Sub being the most widely used examples. Some of them are self-hosted and then we must have an expertise in hosting, configuring, monitoring and maintaining them, investing additional time and resources into these activities. Others are paid services - we tradeoff money for time and accept additional dependency on chosen service provider. In any case, we must give up on something - money, time or both. What if we were able to just use a type of SQL database already managed on our infrastructure to build a scalable Events Platform on top of it? That is exactly what I did with the EventSQL. All it requires is access to to an SQL database or databases. Below are the performance numbers it was able to handle, running on Postgres 16 instance, then three - 16 GB of memory and 8 CPUs (AMD) each. Single Postgres db - 16 GB MEM, 8 CPUs Publishing 1 200 000 events took 67.11s, which means 17 881 per second rate Consuming 1 200 000 events took 74.004s, which means 16 215 per second rate Three Postgres dbs - 16 GB MEM, 8 CPUs each Publishing 3 600 000 events took 66.448s, which means 54 177 per second rate Consuming 3 600 000 events took 78.118s, which means 46 083 per second rate <!-- SC_ON --> submitted by /u/BinaryIgor (https://www.reddit.com/user/BinaryIgor)
[link] (https://binaryigor.com/events-over-sql.html) [comments] (https://www.reddit.com/r/programming/comments/1pjvjqh/eventsql_events_over_sql/)
The Undisputed Queen of Safe Programming
https://www.reddit.com/r/programming/comments/1pjyexm/the_undisputed_queen_of_safe_programming/

<!-- SC_OFF -->An article I wrote talking about safe programming, and something I dont see mentioned a lot <!-- SC_ON --> submitted by /u/jordansrowles (https://www.reddit.com/user/jordansrowles)
[link] (https://medium.com/@jordansrowles/the-undisputed-queen-of-safe-programming-268f59f36d6c) [comments] (https://www.reddit.com/r/programming/comments/1pjyexm/the_undisputed_queen_of_safe_programming/)
Most used programming languages in 2025
https://www.reddit.com/r/programming/comments/1pjzsps/most_used_programming_languages_in_2025/

<!-- SC_OFF -->JetBrains’ 2025 Developer Ecosystem Survey (24,500+ devs, 190+ countries) gives a pretty clear snapshot of what’s being used globally: 🐍 Python — 35%
Java — 33%
🌐 JavaScript — 26%
🧩 TypeScript — 22%
🎨 HTML/CSS — 16% Some quick takeaways:
– Python keeps pushing ahead with AI, data, and automation.
– Java is still a powerhouse in enterprise and backend.
– TypeScript is rising fast as the “default” for modern web apps. Curious what you're seeing in your company or projects.
Which language do you think will dominate the next 3–5 years? <!-- SC_ON --> submitted by /u/Grouchy_Word_9902 (https://www.reddit.com/user/Grouchy_Word_9902)
[link] (https://devecosystem-2025.jetbrains.com/) [comments] (https://www.reddit.com/r/programming/comments/1pjzsps/most_used_programming_languages_in_2025/)