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
    
  
  
    
  | { | |
| "public_identifier": "eden-marco", | |
| "profile_pic_url": "https://img-c.udemycdn.com/user/200_H/30508036_0f4a_4.jpg", | |
| "background_cover_image_url": null, | |
| "first_name": "Eden", | |
| "last_name": "Marco", | |
| "full_name": "Eden Marco", | |
| "follower_count": null, | |
| "occupation": "Customer Engineer at Google", | |
| "headline": "Customer Engineer @ Google Cloud | Best-selling Udemy Instructor", | 
  
    
      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
    
  
  
    
  | use std::fmt; | |
| //#[derive(Debug)] | |
| struct What<'a> { | |
| x: &'a str, | |
| y: &'a str, | |
| } | |
| impl <'a> fmt::Display for What<'_> { | |
| fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| set -e | |
| #set -o pipefail | |
| # Add user to k8s using service account, no RBAC (must create RBAC after this script) | |
| if [[ -z "$1" ]] || [[ -z "$2" ]]; then | |
| echo "usage: $0 <service_account_name> <namespace>" | |
| exit 1 | |
| fi | 
  
    
      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
    
  
  
    
  | --- | |
| - name: Install add-apt-repostory | |
| apt: name=software-properties-common state=latest | |
| - name: Add Oracle Java Repository | |
| apt_repository: repo='ppa:webupd8team/java' | |
| - name: Select button oracle licence | |
| command: bash -c "echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections" | 
  
    
      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
    
  
  
    
  | /** | |
| * Paste this into a scala worksheet | |
| */ | |
| //First of some scala functions on Lists. | |
| val nums = List(2, -4, 5, 7, 1) | |
| val fruits = List("apple", "pineapple", "orange", "banana", "lime", "lemon") | |
| nums filter (x => x > 0) | |
| nums filterNot (x => x > 0) | 
  
    
      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
    
  
  
    
  | class MyFirstGist(object): | |
| def doGist(self): | |
| print("This is my first Gist") |