Quantum meets AI: DLR Institute for AI Safety and Security presents future technologies at ESANN 2025
https://www.reddit.com/r/programming/comments/1kpdgn2/quantum_meets_ai_dlr_institute_for_ai_safety_and/
submitted by /u/donutloop (https://www.reddit.com/user/donutloop)
[link] (https://www.dlr.de/en/ki/latest/news/esann-2025) [comments] (https://www.reddit.com/r/programming/comments/1kpdgn2/quantum_meets_ai_dlr_institute_for_ai_safety_and/)
https://www.reddit.com/r/programming/comments/1kpdgn2/quantum_meets_ai_dlr_institute_for_ai_safety_and/
submitted by /u/donutloop (https://www.reddit.com/user/donutloop)
[link] (https://www.dlr.de/en/ki/latest/news/esann-2025) [comments] (https://www.reddit.com/r/programming/comments/1kpdgn2/quantum_meets_ai_dlr_institute_for_ai_safety_and/)
Relational vs Document-Oriented Database for Software Architecture
https://www.reddit.com/r/programming/comments/1kpfeqi/relational_vs_documentoriented_database_for/
<!-- SC_OFF -->This is the repo with the full examples: https://github.com/LukasNiessen/relational-db-vs-document-store <!-- SC_ON --> submitted by /u/trolleid (https://www.reddit.com/user/trolleid)
[link] (https://lukasniessen.medium.com/relational-vs-document-oriented-database-for-software-architecture-51afea515f5d) [comments] (https://www.reddit.com/r/programming/comments/1kpfeqi/relational_vs_documentoriented_database_for/)
https://www.reddit.com/r/programming/comments/1kpfeqi/relational_vs_documentoriented_database_for/
<!-- SC_OFF -->This is the repo with the full examples: https://github.com/LukasNiessen/relational-db-vs-document-store <!-- SC_ON --> submitted by /u/trolleid (https://www.reddit.com/user/trolleid)
[link] (https://lukasniessen.medium.com/relational-vs-document-oriented-database-for-software-architecture-51afea515f5d) [comments] (https://www.reddit.com/r/programming/comments/1kpfeqi/relational_vs_documentoriented_database_for/)
How I Beat the Midnight Rush: CDN + AES for Puzzle Delivery
https://www.reddit.com/r/programming/comments/1kpfsky/how_i_beat_the_midnight_rush_cdn_aes_for_puzzle/
<!-- SC_OFF -->Hey, my name is Emil, and I am the creator of Everybody Codes, an online platform with programming puzzles similar to Advent of Code. I wanted to share with you a solution that might be useful for your projects. It's about blocking certain content on a page and unlocking it only under specific conditions. The problem seems trivial, but imagine the following scenario: The programming puzzle's content becomes available, for instance, at midnight. Until that moment, the content should be unavailable. Users wanting to compete globally want to load the riddle content as quickly as possible, right after it is made available. What's the problem? If you are a small service and do not deliver content through the cloud, your server has to send a large amount of data to many users simultaneously. As the length of the puzzle description or input increases, the problem worsens, leading to a situation where, in the best-case scenario, the puzzle will not start evenly for all users. And in the worst case, the server will start rejecting some requests. I don't know if my solution is standard, but it works well.
It goes like this: I encode the content using AES with a strong 32-character (256-bit) key. This data goes to a regular CDN (I use Bunny CDN) and is then downloaded by users, even before the quest is globally released. When the specified time comes, I provide users only with the AES key, which is 32 characters, and the decoding process is handled by JavaScript on the client side. Thanks to this, I can describe the quest as precisely as I need, add SVGs, and scale the input size as desired because serving content via CDN is very cheap. I can also better test performance in practice because I know exactly how much data I will be sending to users, regardless of the quest content. The trick is also useful when we want to offload data transfer to the CDN but need to control who has access to the content and under what conditions. That's it! Best regards, Emil <!-- SC_ON --> submitted by /u/EverybodyCodes (https://www.reddit.com/user/EverybodyCodes)
[link] (https://everybody.codes/) [comments] (https://www.reddit.com/r/programming/comments/1kpfsky/how_i_beat_the_midnight_rush_cdn_aes_for_puzzle/)
https://www.reddit.com/r/programming/comments/1kpfsky/how_i_beat_the_midnight_rush_cdn_aes_for_puzzle/
<!-- SC_OFF -->Hey, my name is Emil, and I am the creator of Everybody Codes, an online platform with programming puzzles similar to Advent of Code. I wanted to share with you a solution that might be useful for your projects. It's about blocking certain content on a page and unlocking it only under specific conditions. The problem seems trivial, but imagine the following scenario: The programming puzzle's content becomes available, for instance, at midnight. Until that moment, the content should be unavailable. Users wanting to compete globally want to load the riddle content as quickly as possible, right after it is made available. What's the problem? If you are a small service and do not deliver content through the cloud, your server has to send a large amount of data to many users simultaneously. As the length of the puzzle description or input increases, the problem worsens, leading to a situation where, in the best-case scenario, the puzzle will not start evenly for all users. And in the worst case, the server will start rejecting some requests. I don't know if my solution is standard, but it works well.
It goes like this: I encode the content using AES with a strong 32-character (256-bit) key. This data goes to a regular CDN (I use Bunny CDN) and is then downloaded by users, even before the quest is globally released. When the specified time comes, I provide users only with the AES key, which is 32 characters, and the decoding process is handled by JavaScript on the client side. Thanks to this, I can describe the quest as precisely as I need, add SVGs, and scale the input size as desired because serving content via CDN is very cheap. I can also better test performance in practice because I know exactly how much data I will be sending to users, regardless of the quest content. The trick is also useful when we want to offload data transfer to the CDN but need to control who has access to the content and under what conditions. That's it! Best regards, Emil <!-- SC_ON --> submitted by /u/EverybodyCodes (https://www.reddit.com/user/EverybodyCodes)
[link] (https://everybody.codes/) [comments] (https://www.reddit.com/r/programming/comments/1kpfsky/how_i_beat_the_midnight_rush_cdn_aes_for_puzzle/)
Serious question: As a junior dev, how do I avoid being this guy in 20 years
https://www.reddit.com/r/programming/comments/1kphmcg/serious_question_as_a_junior_dev_how_do_i_avoid/
submitted by /u/theprivateselect (https://www.reddit.com/user/theprivateselect)
[link] (https://www.yahoo.com/news/software-engineer-lost-150k-job-090000839.html) [comments] (https://www.reddit.com/r/programming/comments/1kphmcg/serious_question_as_a_junior_dev_how_do_i_avoid/)
https://www.reddit.com/r/programming/comments/1kphmcg/serious_question_as_a_junior_dev_how_do_i_avoid/
submitted by /u/theprivateselect (https://www.reddit.com/user/theprivateselect)
[link] (https://www.yahoo.com/news/software-engineer-lost-150k-job-090000839.html) [comments] (https://www.reddit.com/r/programming/comments/1kphmcg/serious_question_as_a_junior_dev_how_do_i_avoid/)
You should not write library code! (probably)
https://www.reddit.com/r/programming/comments/1kpi42j/you_should_not_write_library_code_probably/
submitted by /u/wilsoniumite (https://www.reddit.com/user/wilsoniumite)
[link] (https://wilsoniumite.com/2025/05/17/you-should-not-write-library-code-probably/) [comments] (https://www.reddit.com/r/programming/comments/1kpi42j/you_should_not_write_library_code_probably/)
https://www.reddit.com/r/programming/comments/1kpi42j/you_should_not_write_library_code_probably/
submitted by /u/wilsoniumite (https://www.reddit.com/user/wilsoniumite)
[link] (https://wilsoniumite.com/2025/05/17/you-should-not-write-library-code-probably/) [comments] (https://www.reddit.com/r/programming/comments/1kpi42j/you_should_not_write_library_code_probably/)
Traced What Actually Happens Under the Hood for ln, rm, and cat
https://www.reddit.com/r/programming/comments/1kpil9f/traced_what_actually_happens_under_the_hood_for/
submitted by /u/Dorshalsfta (https://www.reddit.com/user/Dorshalsfta)
[link] (https://github.com/adiaholic/Understand-OS/blob/main/hard_links/Readme.md) [comments] (https://www.reddit.com/r/programming/comments/1kpil9f/traced_what_actually_happens_under_the_hood_for/)
https://www.reddit.com/r/programming/comments/1kpil9f/traced_what_actually_happens_under_the_hood_for/
submitted by /u/Dorshalsfta (https://www.reddit.com/user/Dorshalsfta)
[link] (https://github.com/adiaholic/Understand-OS/blob/main/hard_links/Readme.md) [comments] (https://www.reddit.com/r/programming/comments/1kpil9f/traced_what_actually_happens_under_the_hood_for/)
How to Thrive in Your First 90 Days in a New Role as an Engineer
https://www.reddit.com/r/programming/comments/1kpo5i4/how_to_thrive_in_your_first_90_days_in_a_new_role/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://www.youtube.com/watch?v=G2t8yc9HGv8) [comments] (https://www.reddit.com/r/programming/comments/1kpo5i4/how_to_thrive_in_your_first_90_days_in_a_new_role/)
https://www.reddit.com/r/programming/comments/1kpo5i4/how_to_thrive_in_your_first_90_days_in_a_new_role/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://www.youtube.com/watch?v=G2t8yc9HGv8) [comments] (https://www.reddit.com/r/programming/comments/1kpo5i4/how_to_thrive_in_your_first_90_days_in_a_new_role/)
Reflecting on Software Engineering Handbook
https://www.reddit.com/r/programming/comments/1kpojvv/reflecting_on_software_engineering_handbook/
submitted by /u/yusufaytas (https://www.reddit.com/user/yusufaytas)
[link] (https://yusufaytas.com/reflecting-on-software-engineering-handbook/) [comments] (https://www.reddit.com/r/programming/comments/1kpojvv/reflecting_on_software_engineering_handbook/)
https://www.reddit.com/r/programming/comments/1kpojvv/reflecting_on_software_engineering_handbook/
submitted by /u/yusufaytas (https://www.reddit.com/user/yusufaytas)
[link] (https://yusufaytas.com/reflecting-on-software-engineering-handbook/) [comments] (https://www.reddit.com/r/programming/comments/1kpojvv/reflecting_on_software_engineering_handbook/)
AGILE is NOT what you think!
https://www.reddit.com/r/programming/comments/1kpol01/agile_is_not_what_you_think/
submitted by /u/SamuraiDeveloper21 (https://www.reddit.com/user/SamuraiDeveloper21)
[link] (https://medium.com/javarevisited/agile-is-not-what-you-think-e1a7fb592a27?sk=abe0692e4403bcbc543d3ab9132c77d4) [comments] (https://www.reddit.com/r/programming/comments/1kpol01/agile_is_not_what_you_think/)
https://www.reddit.com/r/programming/comments/1kpol01/agile_is_not_what_you_think/
submitted by /u/SamuraiDeveloper21 (https://www.reddit.com/user/SamuraiDeveloper21)
[link] (https://medium.com/javarevisited/agile-is-not-what-you-think-e1a7fb592a27?sk=abe0692e4403bcbc543d3ab9132c77d4) [comments] (https://www.reddit.com/r/programming/comments/1kpol01/agile_is_not_what_you_think/)
Building Long-Term memories using hierarchical summarization
https://www.reddit.com/r/programming/comments/1kq4otb/building_longterm_memories_using_hierarchical/
submitted by /u/Party-Tower-5475 (https://www.reddit.com/user/Party-Tower-5475)
[link] (https://pieces.app/blog/hierarchical-summarization?utm_source=reddit&utm_medium=referral&utm_campaign=r47) [comments] (https://www.reddit.com/r/programming/comments/1kq4otb/building_longterm_memories_using_hierarchical/)
https://www.reddit.com/r/programming/comments/1kq4otb/building_longterm_memories_using_hierarchical/
submitted by /u/Party-Tower-5475 (https://www.reddit.com/user/Party-Tower-5475)
[link] (https://pieces.app/blog/hierarchical-summarization?utm_source=reddit&utm_medium=referral&utm_campaign=r47) [comments] (https://www.reddit.com/r/programming/comments/1kq4otb/building_longterm_memories_using_hierarchical/)
babygit
https://www.reddit.com/r/programming/comments/1kq64fh/babygit/
<!-- SC_OFF -->For my Computer Science project, I chose to create a toy version of git. Please do check it out and tell me if I can improve on something. Pull requests are also welcome.
Note that the project MUST be written entirely in C. <!-- SC_ON --> submitted by /u/Fluc7u5 (https://www.reddit.com/user/Fluc7u5)
[link] (https://github.com/SavvyHex/babygit) [comments] (https://www.reddit.com/r/programming/comments/1kq64fh/babygit/)
https://www.reddit.com/r/programming/comments/1kq64fh/babygit/
<!-- SC_OFF -->For my Computer Science project, I chose to create a toy version of git. Please do check it out and tell me if I can improve on something. Pull requests are also welcome.
Note that the project MUST be written entirely in C. <!-- SC_ON --> submitted by /u/Fluc7u5 (https://www.reddit.com/user/Fluc7u5)
[link] (https://github.com/SavvyHex/babygit) [comments] (https://www.reddit.com/r/programming/comments/1kq64fh/babygit/)
Build Software Consultancy Website using UIkit
https://www.reddit.com/r/programming/comments/1kq8g8c/build_software_consultancy_website_using_uikit/
<!-- SC_OFF -->UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces. <!-- SC_ON --> submitted by /u/ram-foss (https://www.reddit.com/user/ram-foss)
[link] (https://www.blackslate.io/articles/build-software-consultancy-website-using-uikit) [comments] (https://www.reddit.com/r/programming/comments/1kq8g8c/build_software_consultancy_website_using_uikit/)
https://www.reddit.com/r/programming/comments/1kq8g8c/build_software_consultancy_website_using_uikit/
<!-- SC_OFF -->UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces. <!-- SC_ON --> submitted by /u/ram-foss (https://www.reddit.com/user/ram-foss)
[link] (https://www.blackslate.io/articles/build-software-consultancy-website-using-uikit) [comments] (https://www.reddit.com/r/programming/comments/1kq8g8c/build_software_consultancy_website_using_uikit/)
How to make your MCP clients (Cursor, Windsurf...) share context with each other
https://www.reddit.com/r/programming/comments/1kq8pro/how_to_make_your_mcp_clients_cursor_windsurf/
<!-- SC_OFF -->With all this recent hype around MCP, I still feel like missing out when working with different MCP clients (especially in terms of context). I was looking for a personal, portable LLM “memory layer” that lives locally on my system, with complete control over the data. That’s when I found OpenMemory MCP (open source) by Mem0, which plugs into any MCP client (like Cursor, Windsurf, Claude, Cline) over SSE and adds a private, vector-backed memory layer. Under the hood: - stores and recalls arbitrary chunks of text (memories) across sessions
- uses a vector store (Qdrant) to perform relevance-based retrieval
- runs fully on your infrastructure (Docker + Postgres + Qdrant) with no data sent outside
- includes a next.js dashboard to show who’s reading/writing memories and a history of state changes
- Provides four standard memory operations (add_memories, search_memory, list_memories, delete_all_memories) So I analyzed the complete codebase (https://github.com/mem0ai/mem0/tree/main/openmemory) and created a free guide (https://medium.com/gitconnected/how-to-make-your-clients-more-context-aware-with-openmemory-mcp-60057bcc24a3) to explain all the stuff in a simple way. Covered the following topics in detail. What OpenMemory MCP Server is and why does it matter? How it works (the basic flow). Step-by-step guide to set up and run OpenMemory. Features available in the dashboard and what’s happening behind the UI. Security, Access control and Architecture overview. Practical use cases with examples. Would love your feedback, especially if there’s anything important I have missed or misunderstood. <!-- SC_ON --> submitted by /u/anmolbaranwal (https://www.reddit.com/user/anmolbaranwal)
[link] (https://levelup.gitconnected.com/how-to-make-your-clients-more-context-aware-with-openmemory-mcp-60057bcc24a3) [comments] (https://www.reddit.com/r/programming/comments/1kq8pro/how_to_make_your_mcp_clients_cursor_windsurf/)
https://www.reddit.com/r/programming/comments/1kq8pro/how_to_make_your_mcp_clients_cursor_windsurf/
<!-- SC_OFF -->With all this recent hype around MCP, I still feel like missing out when working with different MCP clients (especially in terms of context). I was looking for a personal, portable LLM “memory layer” that lives locally on my system, with complete control over the data. That’s when I found OpenMemory MCP (open source) by Mem0, which plugs into any MCP client (like Cursor, Windsurf, Claude, Cline) over SSE and adds a private, vector-backed memory layer. Under the hood: - stores and recalls arbitrary chunks of text (memories) across sessions
- uses a vector store (Qdrant) to perform relevance-based retrieval
- runs fully on your infrastructure (Docker + Postgres + Qdrant) with no data sent outside
- includes a next.js dashboard to show who’s reading/writing memories and a history of state changes
- Provides four standard memory operations (add_memories, search_memory, list_memories, delete_all_memories) So I analyzed the complete codebase (https://github.com/mem0ai/mem0/tree/main/openmemory) and created a free guide (https://medium.com/gitconnected/how-to-make-your-clients-more-context-aware-with-openmemory-mcp-60057bcc24a3) to explain all the stuff in a simple way. Covered the following topics in detail. What OpenMemory MCP Server is and why does it matter? How it works (the basic flow). Step-by-step guide to set up and run OpenMemory. Features available in the dashboard and what’s happening behind the UI. Security, Access control and Architecture overview. Practical use cases with examples. Would love your feedback, especially if there’s anything important I have missed or misunderstood. <!-- SC_ON --> submitted by /u/anmolbaranwal (https://www.reddit.com/user/anmolbaranwal)
[link] (https://levelup.gitconnected.com/how-to-make-your-clients-more-context-aware-with-openmemory-mcp-60057bcc24a3) [comments] (https://www.reddit.com/r/programming/comments/1kq8pro/how_to_make_your_mcp_clients_cursor_windsurf/)
Detecting malicious Unicode (Daniel Stenberg, curl)
https://www.reddit.com/r/programming/comments/1kq9bza/detecting_malicious_unicode_daniel_stenberg_curl/
submitted by /u/Skaarj (https://www.reddit.com/user/Skaarj)
[link] (https://daniel.haxx.se/blog/2025/05/16/detecting-malicious-unicode/) [comments] (https://www.reddit.com/r/programming/comments/1kq9bza/detecting_malicious_unicode_daniel_stenberg_curl/)
https://www.reddit.com/r/programming/comments/1kq9bza/detecting_malicious_unicode_daniel_stenberg_curl/
submitted by /u/Skaarj (https://www.reddit.com/user/Skaarj)
[link] (https://daniel.haxx.se/blog/2025/05/16/detecting-malicious-unicode/) [comments] (https://www.reddit.com/r/programming/comments/1kq9bza/detecting_malicious_unicode_daniel_stenberg_curl/)
Any alternative to SMS parsing on iOS for extracting periodic transactional data?
https://www.reddit.com/r/programming/comments/1kq9f14/any_alternative_to_sms_parsing_on_ios_for/
<!-- SC_OFF -->Hey folks, I'm curious if anyone has found reliable alternatives to SMS parsing on iOS for fetching time-based, transactional or notification-style data. I know iOS restricts direct SMS access, but wondering if there are workarounds people use—email parsing, notification listeners, or anything else? Not trying to do anything shady—just looking to understand what's possible within the iOS ecosystem, ideally in a way that’s privacy-compliant. Would appreciate any insights or resources! <!-- SC_ON --> submitted by /u/Due-Hunter-2931 (https://www.reddit.com/user/Due-Hunter-2931)
[link] (https://www.youtube.com/) [comments] (https://www.reddit.com/r/programming/comments/1kq9f14/any_alternative_to_sms_parsing_on_ios_for/)
https://www.reddit.com/r/programming/comments/1kq9f14/any_alternative_to_sms_parsing_on_ios_for/
<!-- SC_OFF -->Hey folks, I'm curious if anyone has found reliable alternatives to SMS parsing on iOS for fetching time-based, transactional or notification-style data. I know iOS restricts direct SMS access, but wondering if there are workarounds people use—email parsing, notification listeners, or anything else? Not trying to do anything shady—just looking to understand what's possible within the iOS ecosystem, ideally in a way that’s privacy-compliant. Would appreciate any insights or resources! <!-- SC_ON --> submitted by /u/Due-Hunter-2931 (https://www.reddit.com/user/Due-Hunter-2931)
[link] (https://www.youtube.com/) [comments] (https://www.reddit.com/r/programming/comments/1kq9f14/any_alternative_to_sms_parsing_on_ios_for/)
Leader-Follower Replication in 1 diagram and 243 words
https://www.reddit.com/r/programming/comments/1kq9j51/leaderfollower_replication_in_1_diagram_and_243/
submitted by /u/stmoreau (https://www.reddit.com/user/stmoreau)
[link] (https://www.systemdesignbutsimple.com/p/leader-follower-replication-in-1-diagram-and-243-words) [comments] (https://www.reddit.com/r/programming/comments/1kq9j51/leaderfollower_replication_in_1_diagram_and_243/)
https://www.reddit.com/r/programming/comments/1kq9j51/leaderfollower_replication_in_1_diagram_and_243/
submitted by /u/stmoreau (https://www.reddit.com/user/stmoreau)
[link] (https://www.systemdesignbutsimple.com/p/leader-follower-replication-in-1-diagram-and-243-words) [comments] (https://www.reddit.com/r/programming/comments/1kq9j51/leaderfollower_replication_in_1_diagram_and_243/)
Justification Filler Phrases
https://www.reddit.com/r/programming/comments/1kqa2ql/justification_filler_phrases/
submitted by /u/SerCeMan (https://www.reddit.com/user/SerCeMan)
[link] (https://serce.me/posts/2025-05-19-justification-filler-phrases) [comments] (https://www.reddit.com/r/programming/comments/1kqa2ql/justification_filler_phrases/)
https://www.reddit.com/r/programming/comments/1kqa2ql/justification_filler_phrases/
submitted by /u/SerCeMan (https://www.reddit.com/user/SerCeMan)
[link] (https://serce.me/posts/2025-05-19-justification-filler-phrases) [comments] (https://www.reddit.com/r/programming/comments/1kqa2ql/justification_filler_phrases/)
Coding Without a Laptop - Two Weeks with AR Glasses and Linux on Android | Hold The Robot
https://www.reddit.com/r/programming/comments/1kqacf9/coding_without_a_laptop_two_weeks_with_ar_glasses/
submitted by /u/Xadartt (https://www.reddit.com/user/Xadartt)
[link] (https://holdtherobot.com/blog/2025/05/11/linux-on-android-with-ar-glasses/) [comments] (https://www.reddit.com/r/programming/comments/1kqacf9/coding_without_a_laptop_two_weeks_with_ar_glasses/)
https://www.reddit.com/r/programming/comments/1kqacf9/coding_without_a_laptop_two_weeks_with_ar_glasses/
submitted by /u/Xadartt (https://www.reddit.com/user/Xadartt)
[link] (https://holdtherobot.com/blog/2025/05/11/linux-on-android-with-ar-glasses/) [comments] (https://www.reddit.com/r/programming/comments/1kqacf9/coding_without_a_laptop_two_weeks_with_ar_glasses/)
Vibe-hacking with JetBrains Junie: Reconnaissance & Subdomain enumeration
https://www.reddit.com/r/programming/comments/1kqdiru/vibehacking_with_jetbrains_junie_reconnaissance/
<!-- SC_OFF -->Hi guys! Today I want to share my experience using JetBrains Junie for non-coding tasks. In this post, I described how to use JetBrains Junie to assist with penetration testing—and the results? Surprisingly perfect. What do you think about the future of AI agents in cybersecurity? <!-- SC_ON --> submitted by /u/NordCoderd (https://www.reddit.com/user/NordCoderd)
[link] (https://protsenko.dev/2025/05/15/vibe-hacking-with-jetbrains-junie-reconnaissance-subdomain-enumeration/) [comments] (https://www.reddit.com/r/programming/comments/1kqdiru/vibehacking_with_jetbrains_junie_reconnaissance/)
https://www.reddit.com/r/programming/comments/1kqdiru/vibehacking_with_jetbrains_junie_reconnaissance/
<!-- SC_OFF -->Hi guys! Today I want to share my experience using JetBrains Junie for non-coding tasks. In this post, I described how to use JetBrains Junie to assist with penetration testing—and the results? Surprisingly perfect. What do you think about the future of AI agents in cybersecurity? <!-- SC_ON --> submitted by /u/NordCoderd (https://www.reddit.com/user/NordCoderd)
[link] (https://protsenko.dev/2025/05/15/vibe-hacking-with-jetbrains-junie-reconnaissance-subdomain-enumeration/) [comments] (https://www.reddit.com/r/programming/comments/1kqdiru/vibehacking_with_jetbrains_junie_reconnaissance/)
Moondust: Handcrafted theme for those who haven't found syntax highlighting useful for themself
https://www.reddit.com/r/programming/comments/1kqe8iy/moondust_handcrafted_theme_for_those_who_havent/
submitted by /u/vanyauhalin (https://www.reddit.com/user/vanyauhalin)
[link] (https://github.com/vanyauhalin/moondusttheme) [comments] (https://www.reddit.com/r/programming/comments/1kqe8iy/moondust_handcrafted_theme_for_those_who_havent/)
https://www.reddit.com/r/programming/comments/1kqe8iy/moondust_handcrafted_theme_for_those_who_havent/
submitted by /u/vanyauhalin (https://www.reddit.com/user/vanyauhalin)
[link] (https://github.com/vanyauhalin/moondusttheme) [comments] (https://www.reddit.com/r/programming/comments/1kqe8iy/moondust_handcrafted_theme_for_those_who_havent/)