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*
- 3Possible duplicate of Is scientific code a different enough realm to ignore common coding standards?gnat– gnat2018-07-06 00:58:56 +00:00Commented Jul 6, 2018 at 0:58
- 9You might find answer on Is it worthwhile to write unit tests for scientific research codes? useful.Mark Booth– Mark Booth2018-07-06 16:34:06 +00:00Commented Jul 6, 2018 at 16:34
- 8If you actively want to improve your code, you might consider posting some on Code Review. The community there will gladly help you with that.hoffmale– hoffmale2018-07-06 20:57:00 +00:00Commented Jul 6, 2018 at 20:57
- 8When you say "aside from using version control, and making a new file for each new iteration and recording all of it in a text file somewhere" by "and" do you mean "or" because if you're using version control you shouldn't be copy pasting versions. The point is that version control keeps all the old version for youRichard Tingle– Richard Tingle2018-07-07 14:35:07 +00:00Commented Jul 7, 2018 at 14:35
- 2@mathreadler I don't think you quite understand. Yeah, only I am probably every going to actually read and mess with the code (though you never know, and I do have someone I'm working with who can program, though in a different language)...but the code is still crap. I will have to read it later and figure out again what the heck I'm doing. It is a problem, and I can testify to it because I'm experiencing the effects now, and things have become easier as I've implemented version control and other techniques suggested here.auden– auden2018-07-08 03:25:25 +00:00Commented Jul 8, 2018 at 3:25
| Show 16 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
lang-py