-
Official Kubernetes Training: https://kubernetes.io/training/
-
Kubernetes By Example (from our friends at Red Hat): https://kubernetesbyexample.com/
-
Gitbook (WIP): https://app.gitbook.com/@pnbrown/s/a-devs-intro-to-containers/
-
Kubernetes Command-Line Basics (from our friends at Red Hat): http://gist-reveal.it/bit.ly/k8s-kubectl#/kubernetes-cli-basics-with-kubectl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "success": true, | |
| "credits_left": 20, | |
| "rate_limit_left": 20, | |
| "person": { | |
| "publicIdentifier": "suakuma", | |
| "linkedInIdentifier": "ACoAABWqkUgB9UJmX4lwrkoBhoQk92Pv4-D2Q1k", | |
| "memberIdentifier": "363499848", | |
| "linkedInUrl": "https://www.linkedin.com/in/suakuma", | |
| "firstName": "Samuel", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Enable component-scanning and auto-configuration with @SpringBootApplication Annotation | |
| // It combines @Configuration + @ComponentScan + @EnableAutoConfiguration | |
| @SpringBootApplication | |
| public class FooApplication { | |
| public static void main(String[] args) { | |
| // Bootstrap the application | |
| SpringApplication.run(FooApplication.class, args); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def is_valid_state(state): | |
| # check if it is a valid solution | |
| return True | |
| def get_candidates(state): | |
| return [] | |
| def search(state, solutions): | |
| if is_valid_state(state): | |
| solutions.append(state.copy()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2.7 | |
| __author__ = '[email protected]' | |
| ''' | |
| Python functions to simulate Diffe-Hellman key exchange (TLS/SSL handshake), | |
| for educational use only. | |
| This will automatically generate public and private keys, the shared secret, and will check the handshake. | |
| Does this for 20 cycles, to change edit line 54. | |
| To change encryption strength edit line 32. |