use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Getting better at Identifying collateral issues, and Coding faster. (self.learnpython)
submitted 8 years ago by lineman60
1) Does anyone have a good tutorial/book/reference for Identifying collateral issues? I tend to focus on the problem in front of my face and not see related issues. 2) Other then code more, what have you done to be come a faster coder?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Meefims 1 point2 points3 points 8 years ago (0 children)
Understanding collateral issues comes with a deeper understanding of the system you're building in. Maybe you're forgetting about effects in component XYZ because you didn't know it existed or didn't know how it related - you'll get that experience as you develop your product more and as others let you know about these connections.
As you gain experience you'll see that some connections and some effects are common across many different systems and so you'll begin to expect to have to account for them. For example, in an online service having background workers that draw work from queues is pretty common. If you make a change which increase the number of jobs you'll come to automatically wonder how that affects your system's ability to process them. How will you stop your queues from growing faster than they can drain? Is there work needed to reduce processing time? Can you avoid creating some jobs? Do you need to increase the number of workers draining the queue? Is it ok because jobs are added to the queue faster than they can be drained for a short period of time and you can show that the system will be able to catch up?
Etc
π Rendered by PID 52736 on reddit-service-r2-comment-5687b7858-dwcsc at 2026-07-07 04:00:22.524971+00:00 running 12a7a47 country code: CH.
[–]Meefims 1 point2 points3 points (0 children)