You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 5Not a downvoter, but your analogy is a bit lost on me. Are you saying it's better to spread your code over multiple lines, and have less words on each line?Fodder– Fodder2019-04-11 23:51:56 +00:00Commented Apr 11, 2019 at 23:51
- 1Spread code and helper over multiple lines and files as much as you can. Focus on readability. Don't throw 8 or 9 classes in a single file. It makes the code hard to read and harder to maintain. If you have a large condition code or loops. Turn them into utilities. Avoid heavy nesting. Please let me know if this helps explain it.GetBackerZ– GetBackerZ2019-04-13 01:15:31 +00:00Commented Apr 13, 2019 at 1:15
- 1I used the script for Jackie Brown as a yardstick for modular z/OS COBOL programs. You know, for cocktail party banter...mckenzm– mckenzm2019-04-30 06:11:12 +00:00Commented Apr 30, 2019 at 6:11
- 2It's all about perspective. Most solutions to real world problems are simple. As humans we tend to over complicate simple things. Most calculus is dirived from basic simple math analyzed in a different perspective.GetBackerZ– GetBackerZ2019-05-24 00:07:10 +00:00Commented May 24, 2019 at 0:07
- 1@whatsisname There's a difference between something being impossible and something being a bad goal. Even though making sense to a 5 year old is rarely achievable, by adopting that goal to the greatest degree possible, the result tends to be far, far better than the result of not adopting the goal, even if the goal is never quite achievedTheEnvironmentalist– TheEnvironmentalist2020-08-31 13:08:06 +00:00Commented Aug 31, 2020 at 13:08
| Show 3 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you