Reddit Programming – Telegram
Reddit Programming
211 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
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/)
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/)
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/)
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/)
(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/)
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/)