├── 01 - Linux ├── 01 - Shell │ ├── 01 - Introduction │ │ └── README.md │ ├── 02 - Basic Linux Commands │ │ └── README.md │ └── README.md ├── 02 - Linux Core Concepts │ ├── 01 - Kernel │ │ └── README.md │ ├── 02 - Boot Sequence │ │ └── README.md │ ├── 03 - File Types │ │ └── README.md │ ├── 04 - Filesystem Hierarchy │ │ └── README.md │ └── README.md ├── 03 - Package Management │ └── README.md ├── Archiving Files │ └── README.md ├── Command Line Pipes │ └── README.md ├── Environment Variables │ └── README.md ├── IO Redirection │ └── README.md ├── README.md ├── Searching for Files and Patterns │ └── README.md ├── Security and File Permissions │ ├── 01 - Linux Accounts │ │ └── README.md │ ├── 02 - User Management │ │ └── README.md │ ├── 03 - Access control files │ │ └── README.md │ ├── 04 - File Permissions and Ownership │ │ └── README.md │ ├── 05 - SSH and SCP │ │ └── README.md │ ├── 06 - IPTABLES │ │ └── README.md │ ├── 07 - Cronjobs │ │ └── README.md │ └── README.md └── Service Management with SYSTEMD │ ├── 01 - Creating a SYSTEMD Service │ └── README.md │ ├── 02 - SYSTEMD Tools │ └── README.md │ └── README.md ├── 02 - Shell Scripting ├── 01 - Introduction │ ├── 01 - Creating your first shell script │ │ └── README.md │ ├── 02 - Variables │ │ └── README.md │ ├── 03 - Command Line Arguments │ │ └── README.md │ ├── 04 - Read Inputs │ │ └── README.md │ ├── 05 - Arithmetic Operations │ │ └── README.md │ └── README.md ├── 02 - Flow Control │ ├── 01 - Conditional Logic │ │ └── README.md │ ├── 02 - For loop │ │ └── README.md │ ├── 03 - While Loop │ │ └── README.md │ ├── 04 - Case Statements │ │ └── README.md │ └── README.md ├── 03 - Shebang │ ├── 01 - Exit Codes │ │ └── README.md │ ├── 02 - Functions │ │ └── README.md │ ├── 03 - Tips and Tricks │ │ └── README.md │ └── README.md ├── 04 - Styling │ └── README.md ├── 05 - Sample Project │ └── README.md └── README.md ├── 03 - Basic Networking └── README.md ├── 04 - YAML ├── 01 - What is YAML │ └── README.md ├── 02 - Data serialization and deserialization │ └── README.md └── README.md ├── 05 - GIT ├── 01 - Introduction │ ├── 01 - Local and Remote Repositories │ │ └── README.md │ ├── 02 - Initialize a GIT Repository │ │ └── README.md │ ├── 03 - GIT log │ │ └── README.md │ └── README.md ├── 02 - Branches │ ├── 01 - What is Branch? │ │ └── README.md │ ├── 02 - Merging branches │ │ └── README.md │ └── README.md ├── 03 - Initialize Remote Repositories │ ├── 01 - Initialize Remote Repositories │ │ └── README.md │ ├── 02 - Pushing to remote repositories │ │ └── README.md │ ├── 03 - Cloning remote repositories │ │ └── README.md │ ├── 04 - Fetching and Pulling │ │ └── README.md │ ├── 05 - Pull Requests │ │ └── README.md │ ├── 06 - Merge Conflicts │ │ └── README.md │ ├── 07 - Fork │ │ └── README.md │ └── README.md ├── 04 - Rebasing │ ├── 01 - Rebasing │ │ └── README.md │ ├── 02 - Interactive Rebasing │ │ └── README.md │ ├── 03 - Cherry Picking │ │ └── README.md │ └── README.md ├── 05 - Resetting and Reverting │ ├── 01 - Resetting and Reverting │ │ └── README.md │ ├── 02 - Stashing │ │ └── README.md │ ├── 03 - Reflog │ │ └── README.md │ └── README.md └── README.md ├── 06 - Cloud ├── 01 - AWS │ ├── Day 1 │ │ └── README.md │ ├── Day 2 │ │ └── README.md │ ├── Day 3 │ │ └── README.md │ ├── Day 4 │ │ └── README.md │ ├── Day 5 │ │ └── README.md │ ├── Day 6 │ │ └── README.md │ └── README.md ├── AWS S3 │ └── README.md ├── Basics │ ├── AWS Global Infrastructure │ │ └── README.md │ ├── IAM │ │ └── README.md │ ├── README.md │ ├── Security Groups and Network ACLs │ │ └── README.md │ └── VPC │ │ └── README.md ├── DynamoDB │ └── README.md ├── Elastic Compute Cloud (EC2) │ └── README.md └── README.md ├── 07 - Docker ├── 01 - Docker Commands │ └── README.md ├── 02 - Docker Run │ └── README.md ├── 03 - Docker Images │ ├── Commands vs Entrypoint │ │ └── README.md │ ├── Environment Variables │ │ └── README.md │ └── README.md ├── 04 - Docker Network │ └── README.md ├── 05 - Docker Compose │ └── README.md ├── 06 - Dockerfile │ └── README.md └── README.md ├── 08 - Kubernetes ├── README.md └── YAML in Kubernetes │ └── README.md ├── 09 - Jenkins ├── 01 - What is CI & CD │ └── README.md ├── 02 - Plugins │ └── README.md └── README.md ├── 10 - Ansible └── README.md ├── GoLang ├── 01 - First Go program │ └── README.md ├── 02 - Data Types and Variables │ ├── 02 - Variables │ │ ├── 01 - Declaration │ │ │ └── README.md │ │ ├── 02 - Printing Variables │ │ │ └── README.md │ │ ├── 03 - Scope │ │ │ └── README.md │ │ └── README.md │ ├── 03 - Converting between Data Type │ │ └── README.md │ ├── Data Type │ │ ├── 01 - String │ │ │ └── README.md │ │ ├── 02 - Numbers │ │ │ └── README.md │ │ ├── 03 - Boolean │ │ │ └── README.md │ │ └── README.md │ └── README.md ├── 03 - User Input │ └── README.md ├── 04 - Constants │ └── README.md ├── Array │ └── README.md ├── Control Flow │ ├── 01 - If-else and else if statements │ │ └── README.md │ ├── 02 - Switch Statement │ │ └── README.md │ ├── 03 - Looping with for │ │ └── README.md │ └── README.md ├── Functions │ ├── 01 - Function Syntax │ │ └── README.md │ ├── 02 - Return Types │ │ └── README.md │ ├── 03 - Recursive Functions │ │ └── README.md │ ├── 04 - Anonymous Functions │ │ └── README.md │ ├── 05 - Higher Order Functions │ │ └── README.md │ ├── 06 - Defer Statement │ │ └── README.md │ └── README.md ├── Maps │ └── README.md ├── Modules, Packages and Imports │ ├── 01 - go.mod │ │ └── README.md │ └── README.md ├── Operators │ ├── Arithmetic Operators │ │ └── README.md │ ├── Assignment Operators │ │ └── README.md │ ├── Bitwise Operators │ │ └── README.md │ ├── Comparison Operators │ │ └── README.md │ ├── Logical Operators │ │ └── README.md │ └── README.md ├── Pointers │ ├── 01 - Address and Dereference Operator │ │ └── README.md │ ├── 02 - Declaring and Initialising a Pointer │ │ └── README.md │ ├── 03 - Dereferencing a pointer │ │ └── README.md │ ├── 04 - Passing by Value in Functions │ │ └── README.md │ └── README.md ├── README.md ├── Slices │ └── README.md ├── Struct, Methods and Interfaces │ ├── 01 - Declaring and Initializing a Struct │ │ └── README.md │ ├── 02 - Accessing Fields │ │ └── README.md │ ├── 03 - Passing Structs to Functions │ │ └── README.md │ ├── 04 - Comparing Structs │ │ └── README.md │ ├── 05 - Methods │ │ └── README.md │ ├── 06 - Method Sets │ │ └── README.md │ └── README.md └── Type of Variable │ └── README.md ├── LICENSE ├── Python ├── Accepting user input │ └── README.md ├── Conditionals and Boolean Data Type │ └── README.md ├── Countdown App │ └── README.md ├── Dictionary Data Type │ └── README.md ├── First Python Program │ └── README.md ├── Functions │ └── README.md ├── Loops │ └── README.md ├── Modules │ └── README.md ├── Object Oriented Programming │ └── README.md ├── README.md ├── Scope │ └── README.md ├── Sets │ └── README.md ├── Try or Except │ └── README.md └── Variables │ └── README.md └── README.md /01 - Linux/01 - Shell/01 - Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/01 - Shell/01 - Introduction/README.md -------------------------------------------------------------------------------- /01 - Linux/01 - Shell/02 - Basic Linux Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/01 - Shell/02 - Basic Linux Commands/README.md -------------------------------------------------------------------------------- /01 - Linux/01 - Shell/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /01 - Linux/02 - Linux Core Concepts/01 - Kernel /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/02 - Linux Core Concepts/01 - Kernel /README.md -------------------------------------------------------------------------------- /01 - Linux/02 - Linux Core Concepts/02 - Boot Sequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/02 - Linux Core Concepts/02 - Boot Sequence/README.md -------------------------------------------------------------------------------- /01 - Linux/02 - Linux Core Concepts/03 - File Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/02 - Linux Core Concepts/03 - File Types/README.md -------------------------------------------------------------------------------- /01 - Linux/02 - Linux Core Concepts/04 - Filesystem Hierarchy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/02 - Linux Core Concepts/04 - Filesystem Hierarchy/README.md -------------------------------------------------------------------------------- /01 - Linux/02 - Linux Core Concepts/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /01 - Linux/03 - Package Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/03 - Package Management/README.md -------------------------------------------------------------------------------- /01 - Linux/Archiving Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Archiving Files/README.md -------------------------------------------------------------------------------- /01 - Linux/Command Line Pipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Command Line Pipes/README.md -------------------------------------------------------------------------------- /01 - Linux/Environment Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Environment Variables/README.md -------------------------------------------------------------------------------- /01 - Linux/IO Redirection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/IO Redirection/README.md -------------------------------------------------------------------------------- /01 - Linux/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /01 - Linux/Searching for Files and Patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Searching for Files and Patterns/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/01 - Linux Accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/01 - Linux Accounts/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/02 - User Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/02 - User Management/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/03 - Access control files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/03 - Access control files/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/04 - File Permissions and Ownership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/04 - File Permissions and Ownership/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/05 - SSH and SCP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/05 - SSH and SCP/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/06 - IPTABLES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/06 - IPTABLES/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/07 - Cronjobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Security and File Permissions/07 - Cronjobs/README.md -------------------------------------------------------------------------------- /01 - Linux/Security and File Permissions/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /01 - Linux/Service Management with SYSTEMD/01 - Creating a SYSTEMD Service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Service Management with SYSTEMD/01 - Creating a SYSTEMD Service/README.md -------------------------------------------------------------------------------- /01 - Linux/Service Management with SYSTEMD/02 - SYSTEMD Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/01 - Linux/Service Management with SYSTEMD/02 - SYSTEMD Tools/README.md -------------------------------------------------------------------------------- /01 - Linux/Service Management with SYSTEMD/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /02 - Shell Scripting/01 - Introduction/01 - Creating your first shell script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/01 - Introduction/01 - Creating your first shell script/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/01 - Introduction/02 - Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/01 - Introduction/02 - Variables/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/01 - Introduction/03 - Command Line Arguments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/01 - Introduction/03 - Command Line Arguments/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/01 - Introduction/04 - Read Inputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/01 - Introduction/04 - Read Inputs/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/01 - Introduction/05 - Arithmetic Operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/01 - Introduction/05 - Arithmetic Operations/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/01 - Introduction/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /02 - Shell Scripting/02 - Flow Control/01 - Conditional Logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/02 - Flow Control/01 - Conditional Logic/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/02 - Flow Control/02 - For loop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/02 - Flow Control/02 - For loop/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/02 - Flow Control/03 - While Loop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/02 - Flow Control/03 - While Loop/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/02 - Flow Control/04 - Case Statements /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/02 - Flow Control/04 - Case Statements /README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/02 - Flow Control/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /02 - Shell Scripting/03 - Shebang/01 - Exit Codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/03 - Shebang/01 - Exit Codes/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/03 - Shebang/02 - Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/03 - Shebang/02 - Functions/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/03 - Shebang/03 - Tips and Tricks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/03 - Shebang/03 - Tips and Tricks/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/03 - Shebang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/03 - Shebang/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/04 - Styling /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/04 - Styling /README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/05 - Sample Project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/05 - Sample Project/README.md -------------------------------------------------------------------------------- /02 - Shell Scripting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/02 - Shell Scripting/README.md -------------------------------------------------------------------------------- /03 - Basic Networking /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /04 - YAML/01 - What is YAML /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /04 - YAML/02 - Data serialization and deserialization/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /04 - YAML/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05 - GIT/01 - Introduction/01 - Local and Remote Repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/01 - Introduction/01 - Local and Remote Repositories/README.md -------------------------------------------------------------------------------- /05 - GIT/01 - Introduction/02 - Initialize a GIT Repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/01 - Introduction/02 - Initialize a GIT Repository/README.md -------------------------------------------------------------------------------- /05 - GIT/01 - Introduction/03 - GIT log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/01 - Introduction/03 - GIT log/README.md -------------------------------------------------------------------------------- /05 - GIT/01 - Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/01 - Introduction/README.md -------------------------------------------------------------------------------- /05 - GIT/02 - Branches/01 - What is Branch?/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/02 - Branches/01 - What is Branch?/README.md -------------------------------------------------------------------------------- /05 - GIT/02 - Branches/02 - Merging branches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/02 - Branches/02 - Merging branches/README.md -------------------------------------------------------------------------------- /05 - GIT/02 - Branches/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/01 - Initialize Remote Repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/01 - Initialize Remote Repositories/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/02 - Pushing to remote repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/02 - Pushing to remote repositories/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/03 - Cloning remote repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/03 - Cloning remote repositories/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/04 - Fetching and Pulling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/04 - Fetching and Pulling/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/05 - Pull Requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/05 - Pull Requests/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/06 - Merge Conflicts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/06 - Merge Conflicts/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/07 - Fork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/03 - Initialize Remote Repositories/07 - Fork/README.md -------------------------------------------------------------------------------- /05 - GIT/03 - Initialize Remote Repositories/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05 - GIT/04 - Rebasing/01 - Rebasing /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/04 - Rebasing/01 - Rebasing /README.md -------------------------------------------------------------------------------- /05 - GIT/04 - Rebasing/02 - Interactive Rebasing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/04 - Rebasing/02 - Interactive Rebasing/README.md -------------------------------------------------------------------------------- /05 - GIT/04 - Rebasing/03 - Cherry Picking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/04 - Rebasing/03 - Cherry Picking/README.md -------------------------------------------------------------------------------- /05 - GIT/04 - Rebasing/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05 - GIT/05 - Resetting and Reverting/01 - Resetting and Reverting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/05 - Resetting and Reverting/01 - Resetting and Reverting/README.md -------------------------------------------------------------------------------- /05 - GIT/05 - Resetting and Reverting/02 - Stashing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/05 - Resetting and Reverting/02 - Stashing/README.md -------------------------------------------------------------------------------- /05 - GIT/05 - Resetting and Reverting/03 - Reflog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/05 - GIT/05 - Resetting and Reverting/03 - Reflog/README.md -------------------------------------------------------------------------------- /05 - GIT/05 - Resetting and Reverting/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05 - GIT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/Day 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/01 - AWS/Day 1/README.md -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/Day 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/01 - AWS/Day 2/README.md -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/Day 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/01 - AWS/Day 3/README.md -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/Day 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/01 - AWS/Day 4/README.md -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/Day 5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/01 - AWS/Day 5/README.md -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/Day 6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/01 - AWS/Day 6/README.md -------------------------------------------------------------------------------- /06 - Cloud/01 - AWS/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /06 - Cloud/AWS S3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/AWS S3/README.md -------------------------------------------------------------------------------- /06 - Cloud/Basics/AWS Global Infrastructure/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /06 - Cloud/Basics/IAM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/Basics/IAM/README.md -------------------------------------------------------------------------------- /06 - Cloud/Basics/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /06 - Cloud/Basics/Security Groups and Network ACLs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/Basics/Security Groups and Network ACLs/README.md -------------------------------------------------------------------------------- /06 - Cloud/Basics/VPC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/Basics/VPC/README.md -------------------------------------------------------------------------------- /06 - Cloud/DynamoDB/README.md: -------------------------------------------------------------------------------- 1 | * It is a NoSQL database provided by the AWS. 2 | -------------------------------------------------------------------------------- /06 - Cloud/Elastic Compute Cloud (EC2)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/06 - Cloud/Elastic Compute Cloud (EC2)/README.md -------------------------------------------------------------------------------- /06 - Cloud/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /07 - Docker /01 - Docker Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /01 - Docker Commands/README.md -------------------------------------------------------------------------------- /07 - Docker /02 - Docker Run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /02 - Docker Run/README.md -------------------------------------------------------------------------------- /07 - Docker /03 - Docker Images /Commands vs Entrypoint/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /07 - Docker /03 - Docker Images /Environment Variables /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /03 - Docker Images /Environment Variables /README.md -------------------------------------------------------------------------------- /07 - Docker /03 - Docker Images /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /07 - Docker /04 - Docker Network /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /04 - Docker Network /README.md -------------------------------------------------------------------------------- /07 - Docker /05 - Docker Compose /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /05 - Docker Compose /README.md -------------------------------------------------------------------------------- /07 - Docker /06 - Dockerfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /06 - Dockerfile/README.md -------------------------------------------------------------------------------- /07 - Docker /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/07 - Docker /README.md -------------------------------------------------------------------------------- /08 - Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/08 - Kubernetes/README.md -------------------------------------------------------------------------------- /08 - Kubernetes/YAML in Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/08 - Kubernetes/YAML in Kubernetes/README.md -------------------------------------------------------------------------------- /09 - Jenkins /01 - What is CI & CD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/09 - Jenkins /01 - What is CI & CD/README.md -------------------------------------------------------------------------------- /09 - Jenkins /02 - Plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/09 - Jenkins /02 - Plugins/README.md -------------------------------------------------------------------------------- /09 - Jenkins /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /10 - Ansible/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GoLang/01 - First Go program/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/01 - First Go program/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/02 - Variables/01 - Declaration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/02 - Variables/01 - Declaration/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/02 - Variables/02 - Printing Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/02 - Variables/02 - Printing Variables/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/02 - Variables/03 - Scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/02 - Variables/03 - Scope/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/02 - Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/02 - Variables/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/03 - Converting between Data Type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/03 - Converting between Data Type/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/Data Type /01 - String /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/Data Type /01 - String /README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/Data Type /02 - Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/Data Type /02 - Numbers/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/Data Type /03 - Boolean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/Data Type /03 - Boolean/README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/Data Type /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/02 - Data Types and Variables/Data Type /README.md -------------------------------------------------------------------------------- /GoLang/02 - Data Types and Variables/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GoLang/03 - User Input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/03 - User Input/README.md -------------------------------------------------------------------------------- /GoLang/04 - Constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/04 - Constants/README.md -------------------------------------------------------------------------------- /GoLang/Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Array/README.md -------------------------------------------------------------------------------- /GoLang/Control Flow/01 - If-else and else if statements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Control Flow/01 - If-else and else if statements/README.md -------------------------------------------------------------------------------- /GoLang/Control Flow/02 - Switch Statement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Control Flow/02 - Switch Statement/README.md -------------------------------------------------------------------------------- /GoLang/Control Flow/03 - Looping with for /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Control Flow/03 - Looping with for /README.md -------------------------------------------------------------------------------- /GoLang/Control Flow/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GoLang/Functions/01 - Function Syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/01 - Function Syntax/README.md -------------------------------------------------------------------------------- /GoLang/Functions/02 - Return Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/02 - Return Types/README.md -------------------------------------------------------------------------------- /GoLang/Functions/03 - Recursive Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/03 - Recursive Functions/README.md -------------------------------------------------------------------------------- /GoLang/Functions/04 - Anonymous Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/04 - Anonymous Functions/README.md -------------------------------------------------------------------------------- /GoLang/Functions/05 - Higher Order Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/05 - Higher Order Functions/README.md -------------------------------------------------------------------------------- /GoLang/Functions/06 - Defer Statement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/06 - Defer Statement/README.md -------------------------------------------------------------------------------- /GoLang/Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Functions/README.md -------------------------------------------------------------------------------- /GoLang/Maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Maps/README.md -------------------------------------------------------------------------------- /GoLang/Modules, Packages and Imports/01 - go.mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Modules, Packages and Imports/01 - go.mod/README.md -------------------------------------------------------------------------------- /GoLang/Modules, Packages and Imports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Modules, Packages and Imports/README.md -------------------------------------------------------------------------------- /GoLang/Operators/Arithmetic Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Operators/Arithmetic Operators/README.md -------------------------------------------------------------------------------- /GoLang/Operators/Assignment Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Operators/Assignment Operators/README.md -------------------------------------------------------------------------------- /GoLang/Operators/Bitwise Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Operators/Bitwise Operators/README.md -------------------------------------------------------------------------------- /GoLang/Operators/Comparison Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Operators/Comparison Operators/README.md -------------------------------------------------------------------------------- /GoLang/Operators/Logical Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Operators/Logical Operators/README.md -------------------------------------------------------------------------------- /GoLang/Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Operators/README.md -------------------------------------------------------------------------------- /GoLang/Pointers/01 - Address and Dereference Operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Pointers/01 - Address and Dereference Operator/README.md -------------------------------------------------------------------------------- /GoLang/Pointers/02 - Declaring and Initialising a Pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Pointers/02 - Declaring and Initialising a Pointer/README.md -------------------------------------------------------------------------------- /GoLang/Pointers/03 - Dereferencing a pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Pointers/03 - Dereferencing a pointer/README.md -------------------------------------------------------------------------------- /GoLang/Pointers/04 - Passing by Value in Functions /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Pointers/04 - Passing by Value in Functions /README.md -------------------------------------------------------------------------------- /GoLang/Pointers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Pointers/README.md -------------------------------------------------------------------------------- /GoLang/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GoLang/Slices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Slices/README.md -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/01 - Declaring and Initializing a Struct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Struct, Methods and Interfaces/01 - Declaring and Initializing a Struct/README.md -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/02 - Accessing Fields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Struct, Methods and Interfaces/02 - Accessing Fields/README.md -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/03 - Passing Structs to Functions/README.md: -------------------------------------------------------------------------------- 1 | * Refer to PDF. 2 | -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/04 - Comparing Structs/README.md: -------------------------------------------------------------------------------- 1 | * Refer to PDF. 2 | -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/05 - Methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Struct, Methods and Interfaces/05 - Methods/README.md -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/06 - Method Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Struct, Methods and Interfaces/06 - Method Sets/README.md -------------------------------------------------------------------------------- /GoLang/Struct, Methods and Interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Struct, Methods and Interfaces/README.md -------------------------------------------------------------------------------- /GoLang/Type of Variable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/GoLang/Type of Variable/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/Accepting user input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Accepting user input/README.md -------------------------------------------------------------------------------- /Python/Conditionals and Boolean Data Type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Conditionals and Boolean Data Type/README.md -------------------------------------------------------------------------------- /Python/Countdown App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Countdown App/README.md -------------------------------------------------------------------------------- /Python/Dictionary Data Type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Dictionary Data Type/README.md -------------------------------------------------------------------------------- /Python/First Python Program/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/First Python Program/README.md -------------------------------------------------------------------------------- /Python/Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Functions/README.md -------------------------------------------------------------------------------- /Python/Loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Loops/README.md -------------------------------------------------------------------------------- /Python/Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Modules/README.md -------------------------------------------------------------------------------- /Python/Object Oriented Programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Object Oriented Programming/README.md -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/Scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Scope/README.md -------------------------------------------------------------------------------- /Python/Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Sets/README.md -------------------------------------------------------------------------------- /Python/Try or Except/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Try or Except/README.md -------------------------------------------------------------------------------- /Python/Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/Python/Variables/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavedtheDev/DevOps-Learnings/HEAD/README.md --------------------------------------------------------------------------------