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
| #cloud-config | |
| ssh_authorized_keys: | |
| - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1TjQnNq/HMlI4JCCakK2SQwclw2T+HzuAo3p1+HSj7LsDTJEaMzvaQ3OmeXt6ZHycmv9Cx3sBDhGCu02891C2PKahNTplIi0dC0kFZcfu4J6ZynZLmaGPG81oBpZddEknazawWKq5Xdx20He+qoN86zGbrcXQKKZ30haZmzu/n/315Kazhyy7Iuaf1EvrSEbW97LBNtxAaEtolbPMPFjdjwD4LjARpeP7JNuAe4EQElfBElXdvQJxd4bcchavvNa68Y3IKGZ2kyKGBcZDLOICpGaZBOLYLhuwLn+zO3Hh3xYSGyXQQqUJVx4hRGIolm41F1vQMUS9Zxx/PMleqvWD | |
| rancher: | |
| network: | |
| interfaces: | |
| eth*: | |
| dhcp: true | |
| dns: |
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
| function ls --description 'List contents of directory' | |
| command ls -lFG $argv | |
| end | |
| function subl --description 'Launches sublime text in a new window' | |
| command subl -n $argv | |
| end | |
| function code --description 'Launches visual code studio in a new window' | |
| command code -n $argv |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Net.Http; | |
| using System.Net; | |
| namespace HTTP_Test |
NewerOlder