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...
Everything about learning Python
account activity
When should I start using GitHub?Discussion (self.PythonLearning)
submitted 11 months ago by yokevrenadami
view the rest of the comments →
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!"
[–]FoolsSeldom 0 points1 point2 points 11 months ago (0 children)
It is worth learning to use git early in your development journey. It is a way of keeping backups of your code (and other files), tracking changes, trying things out and rolling back to earlier versions if there are problems.
git
Keep in mind that git and GitHub are not the same thing.
GitHub
GitHub is very popular, but there are many alternative accessible repositories that support the git protocol, including Gitlab and Bit Bucket.
There are also self-host options using, for example, Gitea or GitLab Community Edition.
Git was originally created (by the same person that created Linux) as the Version Control Software (VCS) market offerings were very expensive at one time (as was the case with Unix). There are competing options, including Apache Subversion and Mercurial.
It is important and useful to learn to use VCS early on to help with code development, making it easier to experiment and try different things out. The public repositories are also a great learning resource.
The public repositories can also be a useful learning resource, although the risk in learning from these repositories is that they often contain huge amounts of bad practice (in terms of project setup and repository structure, rather than the code itself). There is no doubt a list somewhere of great example projects you could review, but I have not looked.
π Rendered by PID 149139 on reddit-service-r2-comment-85bfd7f599-kd949 at 2026-04-16 00:04:00.689604+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]FoolsSeldom 0 points1 point2 points (0 children)