├── .gitignore ├── Lectures ├── 01 Introduction │ ├── 00 Course Content.md │ ├── 01 Early Computing.md │ └── 02 Hisotry.md ├── 02 Boolean Logic │ ├── 01 Logic Gates.md │ └── 02 Representing Numbers and Letters with Binary.md ├── 03 How Computers Compute and Remember │ ├── 01 ALU.md │ ├── 02 Registers and RAM.md │ └── 03 CPU.md ├── 04 Instructions and Programs │ ├── 01 Early Programming.md │ ├── 02 The First Programming Languages.md │ └── 03 Statements and Functions.md ├── 05 Algorithms and Data Structures │ ├── 01 Algorithms.md │ └── 02 Data Structures.md ├── 06 Operating Systems │ ├── 01 Introduction.md │ ├── 02 Memory and Storage.md │ ├── 03 Files and File System.md │ ├── 04 Compression.md │ └── 05 Keyboard and Command Line.md ├── 07 Computer Networks │ ├── 01 Introduction.md │ ├── 02 The Internet.md │ ├── 03 The World Wide Web.md │ └── 04 Cyber Security.md └── 08 What Next? │ ├── 01 Machine Learning.md │ ├── 02 Computer Vision.md │ ├── 03 Natural Language Processing.md │ ├── 04 Robots.md │ └── 05 Conclusion.md ├── README.md └── images ├── Pytopia Logo.webp ├── logo-2.webp └── logo.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/.gitignore -------------------------------------------------------------------------------- /Lectures/01 Introduction/00 Course Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/Lectures/01 Introduction/00 Course Content.md -------------------------------------------------------------------------------- /Lectures/01 Introduction/01 Early Computing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/Lectures/01 Introduction/01 Early Computing.md -------------------------------------------------------------------------------- /Lectures/01 Introduction/02 Hisotry.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/02 Boolean Logic/01 Logic Gates.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/02 Boolean Logic/02 Representing Numbers and Letters with Binary.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/03 How Computers Compute and Remember/01 ALU.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/03 How Computers Compute and Remember/02 Registers and RAM.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/03 How Computers Compute and Remember/03 CPU.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/04 Instructions and Programs/01 Early Programming.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/04 Instructions and Programs/02 The First Programming Languages.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/04 Instructions and Programs/03 Statements and Functions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/05 Algorithms and Data Structures/01 Algorithms.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/05 Algorithms and Data Structures/02 Data Structures.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/06 Operating Systems/01 Introduction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/06 Operating Systems/02 Memory and Storage.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/06 Operating Systems/03 Files and File System.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/06 Operating Systems/04 Compression.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/06 Operating Systems/05 Keyboard and Command Line.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/07 Computer Networks/01 Introduction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/07 Computer Networks/02 The Internet.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/07 Computer Networks/03 The World Wide Web.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/07 Computer Networks/04 Cyber Security.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/08 What Next?/01 Machine Learning.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/08 What Next?/02 Computer Vision.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/08 What Next?/03 Natural Language Processing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/08 What Next?/04 Robots.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lectures/08 What Next?/05 Conclusion.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/README.md -------------------------------------------------------------------------------- /images/Pytopia Logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/images/Pytopia Logo.webp -------------------------------------------------------------------------------- /images/logo-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/images/logo-2.webp -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytopia/Programming-101/HEAD/images/logo.jpg --------------------------------------------------------------------------------