From a8377a25efc7b51e56d509d5281cae8d1ecb3626 Mon Sep 17 00:00:00 2001 From: abregman Date: Sun, 3 May 2020 21:17:30 +0300 Subject: [PATCH] Add Python courses --- resources/ansible.md | 9 +++++++++ resources/kubernetes.md | 1 + resources/python.md | 11 ++++++++++- 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/resources/ansible.md b/resources/ansible.md index 8108ba6..c4e9bfb 100644 --- a/resources/ansible.md +++ b/resources/ansible.md @@ -7,3 +7,12 @@ ``` when: my_list | length > 0 ``` + +* Update all packages + +``` +- name: Update system packages + package: + state: latest + name: "*" +``` diff --git a/resources/kubernetes.md b/resources/kubernetes.md index e4f77cd..a6b7288 100644 --- a/resources/kubernetes.md +++ b/resources/kubernetes.md @@ -38,6 +38,7 @@ Name | Comments Name | Comments :------ |:--------: [KubeInvaders](https://github.com/lucky-sideburn/KubeInvaders) | "Chaos Engineering Tool for Kubernetes and Openshift" +[Kubesort](https://github.com/AATHITH/kubesort) | "kubesort helps you sort the results from kubectl get in an easy way" [IngressMonitorController](https://github.com/stakater/IngressMonitorController) | "A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices" ## CheatSheet diff --git a/resources/python.md b/resources/python.md index 0aadf87..fc93201 100644 --- a/resources/python.md +++ b/resources/python.md @@ -1,6 +1,15 @@ # Python -## Learning Python +## Learning Python (Courses) + +Name | Description +:------|:------: +[Introduction To Python Programming](https://www.udemy.com/course/pythonforbeginnersintro) | Free, Udemy +[Python for Beginner](https://www.udemy.com/course/python-hackcc) | Free, Udemy +[Learn Python](https://www.youtube.com/watch?v=rfscVS0vtbw&feature=emb_logo) | Free, freeCodeCamp +[Learn Python from Scratch](https://www.educative.io/courses/learn-python-from-scratch) | Free, educative.io + +## Learning Python (Tutorials an Interactive) Name | Description :------|:------: