I hereby claim:
- I am lemmah on github.
- I am lemayian (https://keybase.io/lemayian) on keybase.
- I have a public key ASCoYc2PTUi2rcZnXbc0o_Gx8A-UCDsJai7q5kivvr_kMwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Retrieve hosted zones with aws route53 list-hosted-zones then enter the zone Id below:
aws route53 list-resource-record-sets --hosted-zone-id "/hostedzone/xxxxxxxxxxx" | \
jq -r '.ResourceRecordSets[] | [.Name, .Type, (.ResourceRecords[]? | .Value), .AliasTarget.DNSName?] | @tsv'Let's start with a simple hello world program. Call it, hello_world.c .
We're going to understand the process this little file with human readable text goes through to become a machine readable
executable binary file. We will intentionally run the intermediate commands with gcc just to know what happens where.
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main() | |
| { | |
| int value = 0; | |
| char message; | |
| printf("Input a number:"); | |
| scanf("%d", &value); | |
| if (value % 5 == 0) { |