-
Command Line Tutorial: We will use the command line for things like navigating the file system and manipulating files.
-
GIT Basics: Git is an open sourced Version Control System(VCS). A VCS records the history of changes to files over time allowing us to return to a previous version of the file. It also provides a workflow that makes collaborating with others possible on large projects.
-
Python Classes And Object Oriented Programming: Python Classes are not new. You have actually used them already when you used things like
strings
,lists
, anddictionaries
. Each of these is a Python Class the is available right out the box. Soon we will be creating our own classes to help us create DRY and reusable blocks of code.