Freecode editor
https://www.reddit.com/r/programming/comments/1pb094q/freecode_editor/
<!-- SC_OFF -->I tried this online code editor today, and honestly it wasn’t bad at all. It’s simple, fast, and gets the job done if you just want to test some Python/Java/JS quickly. I’m curious: has anyone else tried FreeCodeEditor? What do you think about it? Do you see potential or features it should add? <!-- SC_ON --> submitted by /u/Shot-Chair-5635 (https://www.reddit.com/user/Shot-Chair-5635)
[link] (https://www.freecodeditor.com/) [comments] (https://www.reddit.com/r/programming/comments/1pb094q/freecode_editor/)
https://www.reddit.com/r/programming/comments/1pb094q/freecode_editor/
<!-- SC_OFF -->I tried this online code editor today, and honestly it wasn’t bad at all. It’s simple, fast, and gets the job done if you just want to test some Python/Java/JS quickly. I’m curious: has anyone else tried FreeCodeEditor? What do you think about it? Do you see potential or features it should add? <!-- SC_ON --> submitted by /u/Shot-Chair-5635 (https://www.reddit.com/user/Shot-Chair-5635)
[link] (https://www.freecodeditor.com/) [comments] (https://www.reddit.com/r/programming/comments/1pb094q/freecode_editor/)
Quantum Silicon Core Loader v5.7 Update - Universal Dynamic Bootstrapping & Complete Memory Operations
https://www.reddit.com/r/programming/comments/1pb1x3q/quantum_silicon_core_loader_v57_update_universal/
submitted by /u/ComputerGlobal1249 (https://www.reddit.com/user/ComputerGlobal1249)
[link] (https://github.com/Sharif-bot-cmd/Quantum-Silicon-Core-Loader) [comments] (https://www.reddit.com/r/programming/comments/1pb1x3q/quantum_silicon_core_loader_v57_update_universal/)
https://www.reddit.com/r/programming/comments/1pb1x3q/quantum_silicon_core_loader_v57_update_universal/
submitted by /u/ComputerGlobal1249 (https://www.reddit.com/user/ComputerGlobal1249)
[link] (https://github.com/Sharif-bot-cmd/Quantum-Silicon-Core-Loader) [comments] (https://www.reddit.com/r/programming/comments/1pb1x3q/quantum_silicon_core_loader_v57_update_universal/)
r/Spigen Data Scaping
https://www.reddit.com/r/programming/comments/1pb23cc/rspigen_data_scaping/
<!-- SC_OFF -->I am looking for someone to create an excel sheet on the last 500 or so post made in r/Spigen (https://www.reddit.com/r/Spigen). This is for a research topic, but I am unfimiliar with data scraping. I am looking for identifiers such as "id": submission.id, "noscript": submission.noscript, "author": str(submission.author), "score": submission.score, "num_comments": submission.num_comments, "created_utc": submission.created_utc, "url": submission.url, "selftext": submission.selftext Co pilot has also provided this code but I do not know how to run it. Please help! import praw import pandas as pd # Authenticate with Reddit API reddit = praw.Reddit( client_id="YOUR_CLIENT_ID", # replace with your client_id client_secret="YOUR_CLIENT_SECRET",# replace with your client_secret user_agent="spigen_scraper" # short denoscription of your app ) # Choose subreddit subreddit = reddit.subreddit("Spigen") # Collect last 500 posts posts = [] for submission in subreddit.new(limit=500): posts.append({ "id": submission.id, "noscript": submission.noscript, "author": str(submission.author), "score": submission.score, "num_comments": submission.num_comments, "created_utc": submission.created_utc, "url": submission.url, "selftext": submission.selftext }) # Convert to DataFrame df = pd.DataFrame(posts) # Save to Excel df.to_excel("spigen_reddit_posts.xlsx", index=False) <!-- SC_ON --> submitted by /u/seanmi24 (https://www.reddit.com/user/seanmi24)
[link] (https://www.reddit.com/r/Spigen/) [comments] (https://www.reddit.com/r/programming/comments/1pb23cc/rspigen_data_scaping/)
https://www.reddit.com/r/programming/comments/1pb23cc/rspigen_data_scaping/
<!-- SC_OFF -->I am looking for someone to create an excel sheet on the last 500 or so post made in r/Spigen (https://www.reddit.com/r/Spigen). This is for a research topic, but I am unfimiliar with data scraping. I am looking for identifiers such as "id": submission.id, "noscript": submission.noscript, "author": str(submission.author), "score": submission.score, "num_comments": submission.num_comments, "created_utc": submission.created_utc, "url": submission.url, "selftext": submission.selftext Co pilot has also provided this code but I do not know how to run it. Please help! import praw import pandas as pd # Authenticate with Reddit API reddit = praw.Reddit( client_id="YOUR_CLIENT_ID", # replace with your client_id client_secret="YOUR_CLIENT_SECRET",# replace with your client_secret user_agent="spigen_scraper" # short denoscription of your app ) # Choose subreddit subreddit = reddit.subreddit("Spigen") # Collect last 500 posts posts = [] for submission in subreddit.new(limit=500): posts.append({ "id": submission.id, "noscript": submission.noscript, "author": str(submission.author), "score": submission.score, "num_comments": submission.num_comments, "created_utc": submission.created_utc, "url": submission.url, "selftext": submission.selftext }) # Convert to DataFrame df = pd.DataFrame(posts) # Save to Excel df.to_excel("spigen_reddit_posts.xlsx", index=False) <!-- SC_ON --> submitted by /u/seanmi24 (https://www.reddit.com/user/seanmi24)
[link] (https://www.reddit.com/r/Spigen/) [comments] (https://www.reddit.com/r/programming/comments/1pb23cc/rspigen_data_scaping/)
Python solution to extract all tables PDFs and save each table to its own Excel sheet
https://www.reddit.com/r/programming/comments/1pb3mwf/python_solution_to_extract_all_tables_pdfs_and/
<!-- SC_OFF -->Hi everyone, I’m working with around multiple PDF files (all in English, mostly digital). Each PDF contains multiple tables. Some have 5 tables, others have 10–20 tables scattered across different pages. I need a reliable way in Python (or any tool) that can automatically: Open every PDF Detect and extract ALL tables correctly (including tables that span multiple pages) Save each table into Excel, preferably one table per sheet (or one table per file) Does anyone know the best working solution for this kind of bulk table extraction? I’m looking for something that “just works” with high accuracy. Any working code examples, GitHub repos, or recommendations would save my life right now! Thank you so much! 🙏 <!-- SC_ON --> submitted by /u/CalendarOk67 (https://www.reddit.com/user/CalendarOk67)
[link] (https://pypi.org/project/pytesseract/) [comments] (https://www.reddit.com/r/programming/comments/1pb3mwf/python_solution_to_extract_all_tables_pdfs_and/)
https://www.reddit.com/r/programming/comments/1pb3mwf/python_solution_to_extract_all_tables_pdfs_and/
<!-- SC_OFF -->Hi everyone, I’m working with around multiple PDF files (all in English, mostly digital). Each PDF contains multiple tables. Some have 5 tables, others have 10–20 tables scattered across different pages. I need a reliable way in Python (or any tool) that can automatically: Open every PDF Detect and extract ALL tables correctly (including tables that span multiple pages) Save each table into Excel, preferably one table per sheet (or one table per file) Does anyone know the best working solution for this kind of bulk table extraction? I’m looking for something that “just works” with high accuracy. Any working code examples, GitHub repos, or recommendations would save my life right now! Thank you so much! 🙏 <!-- SC_ON --> submitted by /u/CalendarOk67 (https://www.reddit.com/user/CalendarOk67)
[link] (https://pypi.org/project/pytesseract/) [comments] (https://www.reddit.com/r/programming/comments/1pb3mwf/python_solution_to_extract_all_tables_pdfs_and/)
Let's make a game! 356: Setting up
https://www.reddit.com/r/programming/comments/1pb3paf/lets_make_a_game_356_setting_up/
submitted by /u/apeloverage (https://www.reddit.com/user/apeloverage)
[link] (https://www.youtube.com/watch?v=U8slNrCcMaY) [comments] (https://www.reddit.com/r/programming/comments/1pb3paf/lets_make_a_game_356_setting_up/)
https://www.reddit.com/r/programming/comments/1pb3paf/lets_make_a_game_356_setting_up/
submitted by /u/apeloverage (https://www.reddit.com/user/apeloverage)
[link] (https://www.youtube.com/watch?v=U8slNrCcMaY) [comments] (https://www.reddit.com/r/programming/comments/1pb3paf/lets_make_a_game_356_setting_up/)
Game Engine Architecture Explained: From Game Loops to Rendering and Hardware Optimization
https://www.reddit.com/r/programming/comments/1pb4i9t/game_engine_architecture_explained_from_game/
<!-- SC_OFF -->If you’ve ever wondered what really powers a modern video game, this guide breaks it down in a clean, practical way. We walk through how a game loop keeps everything running frame-by-frame, how engines manage scenes, physics, and assets, and how rendering pipelines turn raw data into stunning visuals. You’ll also get a simple look at hardware optimization things like memory access patterns, parallelism, and why CPU/GPU coordination matters. It’s a compact but complete overview designed for developers who want to understand how real game engines work under the hood, without drowning in academic complexity. <!-- SC_ON --> submitted by /u/Digitalunicon (https://www.reddit.com/user/Digitalunicon)
[link] (https://www.realtimerendering.com/blog/) [comments] (https://www.reddit.com/r/programming/comments/1pb4i9t/game_engine_architecture_explained_from_game/)
https://www.reddit.com/r/programming/comments/1pb4i9t/game_engine_architecture_explained_from_game/
<!-- SC_OFF -->If you’ve ever wondered what really powers a modern video game, this guide breaks it down in a clean, practical way. We walk through how a game loop keeps everything running frame-by-frame, how engines manage scenes, physics, and assets, and how rendering pipelines turn raw data into stunning visuals. You’ll also get a simple look at hardware optimization things like memory access patterns, parallelism, and why CPU/GPU coordination matters. It’s a compact but complete overview designed for developers who want to understand how real game engines work under the hood, without drowning in academic complexity. <!-- SC_ON --> submitted by /u/Digitalunicon (https://www.reddit.com/user/Digitalunicon)
[link] (https://www.realtimerendering.com/blog/) [comments] (https://www.reddit.com/r/programming/comments/1pb4i9t/game_engine_architecture_explained_from_game/)
AI isn't lying to you, headlines are.
https://www.reddit.com/r/programming/comments/1pb5c0b/ai_isnt_lying_to_you_headlines_are/
submitted by /u/SnooLobsters2755 (https://www.reddit.com/user/SnooLobsters2755)
[link] (https://iacgm.com/articles/lying/) [comments] (https://www.reddit.com/r/programming/comments/1pb5c0b/ai_isnt_lying_to_you_headlines_are/)
https://www.reddit.com/r/programming/comments/1pb5c0b/ai_isnt_lying_to_you_headlines_are/
submitted by /u/SnooLobsters2755 (https://www.reddit.com/user/SnooLobsters2755)
[link] (https://iacgm.com/articles/lying/) [comments] (https://www.reddit.com/r/programming/comments/1pb5c0b/ai_isnt_lying_to_you_headlines_are/)
Hey every dev out there
https://www.reddit.com/r/programming/comments/1pb6z0j/hey_every_dev_out_there/
submitted by /u/perfect_no_perfect (https://www.reddit.com/user/perfect_no_perfect)
[link] (https://postrama.com/) [comments] (https://www.reddit.com/r/programming/comments/1pb6z0j/hey_every_dev_out_there/)
https://www.reddit.com/r/programming/comments/1pb6z0j/hey_every_dev_out_there/
submitted by /u/perfect_no_perfect (https://www.reddit.com/user/perfect_no_perfect)
[link] (https://postrama.com/) [comments] (https://www.reddit.com/r/programming/comments/1pb6z0j/hey_every_dev_out_there/)
Organizing Files and Modules in Elm: Building an Advent Calendar
https://www.reddit.com/r/programming/comments/1pb84ke/organizing_files_and_modules_in_elm_building_an/
submitted by /u/cekrem (https://www.reddit.com/user/cekrem)
[link] (https://cekrem.github.io/posts/elm-book-chapter-9-organizing-files-and-modules/) [comments] (https://www.reddit.com/r/programming/comments/1pb84ke/organizing_files_and_modules_in_elm_building_an/)
https://www.reddit.com/r/programming/comments/1pb84ke/organizing_files_and_modules_in_elm_building_an/
submitted by /u/cekrem (https://www.reddit.com/user/cekrem)
[link] (https://cekrem.github.io/posts/elm-book-chapter-9-organizing-files-and-modules/) [comments] (https://www.reddit.com/r/programming/comments/1pb84ke/organizing_files_and_modules_in_elm_building_an/)
Spring Boot Built-in API Versioning - Piotr's TechBlog
https://www.reddit.com/r/programming/comments/1pba0lr/spring_boot_builtin_api_versioning_piotrs_techblog/
submitted by /u/piotr_minkowski (https://www.reddit.com/user/piotr_minkowski)
[link] (https://piotrminkowski.com/2025/12/01/spring-boot-built-in-api-versioning/) [comments] (https://www.reddit.com/r/programming/comments/1pba0lr/spring_boot_builtin_api_versioning_piotrs_techblog/)
https://www.reddit.com/r/programming/comments/1pba0lr/spring_boot_builtin_api_versioning_piotrs_techblog/
submitted by /u/piotr_minkowski (https://www.reddit.com/user/piotr_minkowski)
[link] (https://piotrminkowski.com/2025/12/01/spring-boot-built-in-api-versioning/) [comments] (https://www.reddit.com/r/programming/comments/1pba0lr/spring_boot_builtin_api_versioning_piotrs_techblog/)
(s)coping with code comments
https://www.reddit.com/r/programming/comments/1pbc59i/scoping_with_code_comments/
<!-- SC_OFF -->The problem of scope ambiguity of code comments and what to do about it. <!-- SC_ON --> submitted by /u/Beofli (https://www.reddit.com/user/Beofli)
[link] (https://mcvisser.eu/2025/12/01/scoping-with-code-comments/) [comments] (https://www.reddit.com/r/programming/comments/1pbc59i/scoping_with_code_comments/)
https://www.reddit.com/r/programming/comments/1pbc59i/scoping_with_code_comments/
<!-- SC_OFF -->The problem of scope ambiguity of code comments and what to do about it. <!-- SC_ON --> submitted by /u/Beofli (https://www.reddit.com/user/Beofli)
[link] (https://mcvisser.eu/2025/12/01/scoping-with-code-comments/) [comments] (https://www.reddit.com/r/programming/comments/1pbc59i/scoping_with_code_comments/)
Beej's Guide to Learning Computer Science
https://www.reddit.com/r/programming/comments/1pbcsss/beejs_guide_to_learning_computer_science/
submitted by /u/BrewedDoritos (https://www.reddit.com/user/BrewedDoritos)
[link] (https://beej.us/guide/bglcs/html/split/) [comments] (https://www.reddit.com/r/programming/comments/1pbcsss/beejs_guide_to_learning_computer_science/)
https://www.reddit.com/r/programming/comments/1pbcsss/beejs_guide_to_learning_computer_science/
submitted by /u/BrewedDoritos (https://www.reddit.com/user/BrewedDoritos)
[link] (https://beej.us/guide/bglcs/html/split/) [comments] (https://www.reddit.com/r/programming/comments/1pbcsss/beejs_guide_to_learning_computer_science/)
State of the Art of DORA Metrics & AI Integration • Nathen Harvey & Charles Humble
https://www.reddit.com/r/programming/comments/1pbcx6f/state_of_the_art_of_dora_metrics_ai_integration/
submitted by /u/goto-con (https://www.reddit.com/user/goto-con)
[link] (https://youtu.be/_IKB4h9e4NA?list=PLEx5khR4g7PLg2vxafJTTGzeBbmzjsIz6) [comments] (https://www.reddit.com/r/programming/comments/1pbcx6f/state_of_the_art_of_dora_metrics_ai_integration/)
https://www.reddit.com/r/programming/comments/1pbcx6f/state_of_the_art_of_dora_metrics_ai_integration/
submitted by /u/goto-con (https://www.reddit.com/user/goto-con)
[link] (https://youtu.be/_IKB4h9e4NA?list=PLEx5khR4g7PLg2vxafJTTGzeBbmzjsIz6) [comments] (https://www.reddit.com/r/programming/comments/1pbcx6f/state_of_the_art_of_dora_metrics_ai_integration/)
Why xor eax, eax?
https://www.reddit.com/r/programming/comments/1pbdngm/why_xor_eax_eax/
submitted by /u/dist1ll (https://www.reddit.com/user/dist1ll)
[link] (https://xania.org/202512/01-xor-eax-eax) [comments] (https://www.reddit.com/r/programming/comments/1pbdngm/why_xor_eax_eax/)
https://www.reddit.com/r/programming/comments/1pbdngm/why_xor_eax_eax/
submitted by /u/dist1ll (https://www.reddit.com/user/dist1ll)
[link] (https://xania.org/202512/01-xor-eax-eax) [comments] (https://www.reddit.com/r/programming/comments/1pbdngm/why_xor_eax_eax/)
Hasktorch: LibTorch Haskell bindings for deep learning using FFI
https://www.reddit.com/r/programming/comments/1pbfba1/hasktorch_libtorch_haskell_bindings_for_deep/
submitted by /u/emigs95 (https://www.reddit.com/user/emigs95)
[link] (https://www.stackbuilders.com/insights/hasktorch-libtorch-haskell-bindings-for-deep-learning-using-ffi/) [comments] (https://www.reddit.com/r/programming/comments/1pbfba1/hasktorch_libtorch_haskell_bindings_for_deep/)
https://www.reddit.com/r/programming/comments/1pbfba1/hasktorch_libtorch_haskell_bindings_for_deep/
submitted by /u/emigs95 (https://www.reddit.com/user/emigs95)
[link] (https://www.stackbuilders.com/insights/hasktorch-libtorch-haskell-bindings-for-deep-learning-using-ffi/) [comments] (https://www.reddit.com/r/programming/comments/1pbfba1/hasktorch_libtorch_haskell_bindings_for_deep/)
Consumers, projectors, reactors and all that messaging jazz
https://www.reddit.com/r/programming/comments/1pbglnb/consumers_projectors_reactors_and_all_that/
submitted by /u/Adventurous-Salt8514 (https://www.reddit.com/user/Adventurous-Salt8514)
[link] (https://event-driven.io/en/consumers_processors_in_emmett/) [comments] (https://www.reddit.com/r/programming/comments/1pbglnb/consumers_projectors_reactors_and_all_that/)
https://www.reddit.com/r/programming/comments/1pbglnb/consumers_projectors_reactors_and_all_that/
submitted by /u/Adventurous-Salt8514 (https://www.reddit.com/user/Adventurous-Salt8514)
[link] (https://event-driven.io/en/consumers_processors_in_emmett/) [comments] (https://www.reddit.com/r/programming/comments/1pbglnb/consumers_projectors_reactors_and_all_that/)
Tips for configuring Neovim for Claude Code
https://www.reddit.com/r/programming/comments/1pbi55i/tips_for_configuring_neovim_for_claude_code/
submitted by /u/tgeisenberg (https://www.reddit.com/user/tgeisenberg)
[link] (https://xata.io/blog/configuring-neovim-coding-agents) [comments] (https://www.reddit.com/r/programming/comments/1pbi55i/tips_for_configuring_neovim_for_claude_code/)
https://www.reddit.com/r/programming/comments/1pbi55i/tips_for_configuring_neovim_for_claude_code/
submitted by /u/tgeisenberg (https://www.reddit.com/user/tgeisenberg)
[link] (https://xata.io/blog/configuring-neovim-coding-agents) [comments] (https://www.reddit.com/r/programming/comments/1pbi55i/tips_for_configuring_neovim_for_claude_code/)
You should shard your database
https://www.reddit.com/r/programming/comments/1pbiht5/you_should_shard_your_database/
submitted by /u/levkk1 (https://www.reddit.com/user/levkk1)
[link] (https://pgdog.dev/blog/shard-your-database) [comments] (https://www.reddit.com/r/programming/comments/1pbiht5/you_should_shard_your_database/)
https://www.reddit.com/r/programming/comments/1pbiht5/you_should_shard_your_database/
submitted by /u/levkk1 (https://www.reddit.com/user/levkk1)
[link] (https://pgdog.dev/blog/shard-your-database) [comments] (https://www.reddit.com/r/programming/comments/1pbiht5/you_should_shard_your_database/)
Duplication Isn’t Always an Anti-Pattern
https://www.reddit.com/r/programming/comments/1pbvjyv/duplication_isnt_always_an_antipattern/
submitted by /u/Exact_Prior6299 (https://www.reddit.com/user/Exact_Prior6299)
[link] (https://medium.com/@HobokenDays/rethinking-duplication-c1f85f1c0102) [comments] (https://www.reddit.com/r/programming/comments/1pbvjyv/duplication_isnt_always_an_antipattern/)
https://www.reddit.com/r/programming/comments/1pbvjyv/duplication_isnt_always_an_antipattern/
submitted by /u/Exact_Prior6299 (https://www.reddit.com/user/Exact_Prior6299)
[link] (https://medium.com/@HobokenDays/rethinking-duplication-c1f85f1c0102) [comments] (https://www.reddit.com/r/programming/comments/1pbvjyv/duplication_isnt_always_an_antipattern/)
19-Year-Old Dev Diving Into ECS, SFINAE & CRTP
https://www.reddit.com/r/programming/comments/1pbw6d8/19yearold_dev_diving_into_ecs_sfinae_crtp/
<!-- SC_OFF -->Hi! Just before you read, I just want to say that I'm not very familiar with Reddit and its posting culture, so I'm not sure if it's okay to post something like this, but I'll try anyway :) I'm 19 years old and I've been programming for a little over two years. I'm a computer science student, but I also dedicate a lot of my free time to experimenting and learning. I write code as an art lol: I appreciate every moment and I love pushing myself to learn advanced concepts. Lately, I've been immersed in game engine design, particularly around ECS and related systems. My GitHub contains experiments and projects where I explore topics such as: SFINAE and template metaprogramming Variadic programming and movement semantics Static polymorphism (CRTP/SRTP) ECS frameworks and engine architecture I'd love to get feedback, comments, or simply chat about code and design with someone. I know it's a lot to ask, but if you're curious, my github is linked to the post. Thanks for visiting! <!-- SC_ON --> submitted by /u/Mysticatly (https://www.reddit.com/user/Mysticatly)
[link] (https://github.com/unrays) [comments] (https://www.reddit.com/r/programming/comments/1pbw6d8/19yearold_dev_diving_into_ecs_sfinae_crtp/)
https://www.reddit.com/r/programming/comments/1pbw6d8/19yearold_dev_diving_into_ecs_sfinae_crtp/
<!-- SC_OFF -->Hi! Just before you read, I just want to say that I'm not very familiar with Reddit and its posting culture, so I'm not sure if it's okay to post something like this, but I'll try anyway :) I'm 19 years old and I've been programming for a little over two years. I'm a computer science student, but I also dedicate a lot of my free time to experimenting and learning. I write code as an art lol: I appreciate every moment and I love pushing myself to learn advanced concepts. Lately, I've been immersed in game engine design, particularly around ECS and related systems. My GitHub contains experiments and projects where I explore topics such as: SFINAE and template metaprogramming Variadic programming and movement semantics Static polymorphism (CRTP/SRTP) ECS frameworks and engine architecture I'd love to get feedback, comments, or simply chat about code and design with someone. I know it's a lot to ask, but if you're curious, my github is linked to the post. Thanks for visiting! <!-- SC_ON --> submitted by /u/Mysticatly (https://www.reddit.com/user/Mysticatly)
[link] (https://github.com/unrays) [comments] (https://www.reddit.com/r/programming/comments/1pbw6d8/19yearold_dev_diving_into_ecs_sfinae_crtp/)
The Death of Software Engineering as a Profession: a short set of anecdotes
https://www.reddit.com/r/programming/comments/1pc4rim/the_death_of_software_engineering_as_a_profession/
submitted by /u/self (https://www.reddit.com/user/self)
[link] (https://www.jasonscheirer.com/weblog/vignettes/) [comments] (https://www.reddit.com/r/programming/comments/1pc4rim/the_death_of_software_engineering_as_a_profession/)
https://www.reddit.com/r/programming/comments/1pc4rim/the_death_of_software_engineering_as_a_profession/
submitted by /u/self (https://www.reddit.com/user/self)
[link] (https://www.jasonscheirer.com/weblog/vignettes/) [comments] (https://www.reddit.com/r/programming/comments/1pc4rim/the_death_of_software_engineering_as_a_profession/)