This file contains 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 | |
password: mypassword | |
chpasswd: { expire: False } | |
ssh_pwauth: True | |
packages: | |
- build-essential | |
- cmake | |
- gdb |
This file contains 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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDZQL/gvLVh2626tSbSFWktdUqYbxxzw6oguaySBnUrLiONHlMWXJYTKNe24KT3HArawHITGBC9EX9f8TdGBbLJ5AuLxEgKt1ZrYMwrCYAExt7jsTdBodzIBu8vDE+CV4bwXy1Y+nO2zAn5bJnSKKKxhB9LSVk5TsDWWY2u1N8QYqZDGAeZL0DFLjDTYNzRoxtazVnMr1hQJNz9diLq4TeN5KxBPOioo3NSXbh7I8CuRD1Ykx6Bg0arIfsxh7TnBYkCPr+rV5i6HrZ8pOcZ3pOO8+gNG18N6MjPcrzLez7RwwW7SayVXfNB3Gdv9JHmSnAYuC1SjRt/7YfNJEpTvpNUbpkA204rxXgGAxMYkHClapuw0Qen4ytso3hpTUSqU65qhKk9ZwQAhCeGCsVNLqKiBu7cbqS/uHG6Om4ovUugG9MdpZlbVaAF9MkBD61kH+RcuDXMZQax4AnsD6iybt98/5cDGHX8jmBc5XvFM/uPTjE4pOgV2DsVgG77olPBOgpT4w9fmQfIu0zmJXR8Qv1ca6DvDV2/3wybkuf2j0AiG4NfQFIuPrkmpIkKC9Nm2Ood9Owtd3m4BnnOWcfZJAUE5VdR8YyVYckWiIRGfvUWFpgSXyE3PVUfnshLKE1IjabY2Z8Goa263EVAC62lCHssG/A8g/IhPfjJHsWl1ev32w== wuxing |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int output(char * filename) | |
{ | |
FILE * fp; | |
char bad[4096]; | |
char str[64]; |
This file contains 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
import os | |
from dotenv import load_dotenv | |
dotenv_path = os.path.join(os.path.dirname(__file__), '.env') | |
if os.path.exists(dotenv_path): | |
load_dotenv(dotenv_path) |