Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
Important
Crucial information necessary for users to succeed.
[!WARNING]
Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
Important
Crucial information necessary for users to succeed.
[!WARNING]
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en" class=""> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Dog</title> | |
</head> | |
<body> | |
<img src="https://s3-ap-southeast-2.amazonaws.com/static.caarels.com/dog.jpg" alt=""> |
def lambda_handler(event, context): | |
response = { | |
"statusCode": 401, | |
"statusDescription": "401 Unauthorized", | |
"headers": { | |
"WWW-Authenticate": "Basic" | |
}, | |
"body": "Unauthorized" | |
} | |
return response |
exports.handler = async (event) => { | |
const response = { | |
"statusCode": 401, | |
"statusDescription": "401 Unauthorized", | |
"headers": { | |
"WWW-Authenticate": "Basic" | |
}, | |
"body": "Unauthorized" | |
} | |
return response; |
#!/bin/bash | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |