Skip to content

Commit

Permalink
Add Python courses
Browse files Browse the repository at this point in the history
  • Loading branch information
abregman committed May 3, 2020
1 parent 5d711b4 commit a8377a2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
9 changes: 9 additions & 0 deletions resources/ansible.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@
```
when: my_list | length > 0
```

* Update all packages

```
- name: Update system packages
package:
state: latest
name: "*"
```
1 change: 1 addition & 0 deletions resources/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion resources/python.md
Original file line number Diff line number Diff line change
@@ -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
:------|:------:
Expand Down

0 comments on commit a8377a2

Please sign in to comment.