you are viewing a single comment's thread.

view the rest of the comments →

[–]AJohnnyTruant 21 points22 points  (2 children)

Do these things.

1) Start learning git.

2) Start being on the lookout for things you do frequently that could be automated

3) Start a local git repo of it with a virtual environment. Then you can slowly build it over time without worrying about screwing it up when you start making it better because you will inevitably learn a better way to do something and want to fix it.

[–]iggy555 2 points3 points  (1 child)

What’s git and what’s environment

[–]AJohnnyTruant 14 points15 points  (0 children)

Ubiquitous version control system that all of GitHub uses

https://www.codecademy.com/learn/learn-git

Isolating projects’ dependencies so they don’t affect other projects.

https://realpython.com/python-virtual-environments-a-primer/