Last active
June 22, 2023 09:49
-
-
Save RobertoPrevato/b9f5162bfe6082876ec2d9811cc554b0 to your computer and use it in GitHub Desktop.
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
Gist for other projects |
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
FILE="hostinfo.txt" | |
DESTINATION="https://ropt.eu.ngrok.io/$(hostname)" | |
hostname > $FILE | |
echo -e "\r\n" >> $FILE | |
cat /etc/os-release >> $FILE | |
echo "===> will post to $DESTINATION" | |
if ! command -v curl; then | |
echo "===> curl is not available, trying with wget..." | |
if ! command -v wget; then | |
echo "===> wget is also not available :(" | |
echo "Could not post sys information!" | |
exit 2 | |
else | |
wget --post-file=$FILE --header=Content-Type:text/plain $DESTINATION | |
fi | |
else | |
curl -X POST --data-binary @$FILE $DESTINATION | |
fi |
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
[ | |
{ | |
"title": "Zero 3", | |
"content": "Better late than never! Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin felis eros, facilisis sed feugiat a, efficitur ut neque. In vel nulla et nulla aliquet porta ac at est. Praesent metus nibh, posuere vitae quam in, vulputate pharetra magna. Sed a arcu neque. Ut sed pharetra nunc. Sed ultrices libero eu nisi suscipit molestie. Aenean laoreet tortor sed nulla scelerisque, tincidunt vulputate enim varius. Aliquam egestas, mauris eu finibus fermentum, turpis tortor porta sem, nec euismod dolor massa id orci. Nulla sem justo, molestie nec erat sit amet, iaculis ornare ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque non dignissim nibh. Aliquam porttitor, velit eget bibendum dictum, nunc elit tincidunt enim, et pharetra massa odio ultrices leo. Cras quis laoreet sem. Nunc nunc elit, fringilla iaculis vehicula a, ultrices eget tortor. Nulla facilisi.", | |
"icon": "fa-solid fa-archway", | |
"key": "blue", | |
"sub_title": "2022-Q1" | |
}, | |
{ | |
"title": "One", | |
"content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin felis eros, facilisis sed feugiat a, efficitur ut neque. In vel nulla et nulla aliquet porta ac at est. Praesent metus nibh, posuere vitae quam in, vulputate pharetra magna. Sed a arcu neque. Ut sed pharetra nunc. Sed ultrices libero eu nisi suscipit molestie. Aenean laoreet tortor sed nulla scelerisque, tincidunt vulputate enim varius. Aliquam egestas, mauris eu finibus fermentum, turpis tortor porta sem, nec euismod dolor massa id orci. Nulla sem justo, molestie nec erat sit amet, iaculis ornare ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque non dignissim nibh.", | |
"icon": "fa-solid fa-star", | |
"key": "cyan", | |
"sub_title": "2022-Q2" | |
}, | |
{ | |
"title": "Two", | |
"content": "Lorem ipsum dolor sit amet.", | |
"icon": "fa-solid fa-meteor", | |
"sub_title": "2022-Q3" | |
}, | |
{ | |
"title": "Three", | |
"content": "Lorem ipsum dolor sit amet.", | |
"key": "pink", | |
"sub_title": "2022-Q4" | |
}, | |
{ | |
"title": "Four", | |
"content": "Lorem ipsum dolor sit amet.", | |
"icon": "fa-solid fa-fire", | |
"key": "cyan", | |
"sub_title": "2023-Q1" | |
} | |
] |
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
--- | |
- title: Zero | |
content: | |
Better late than never! Lorem ipsum dolor sit amet. Lorem ipsum dolor sit | |
amet, consectetur adipiscing elit. Proin felis eros, facilisis sed feugiat a, | |
efficitur ut neque. In vel nulla et nulla aliquet porta ac at est. Praesent metus | |
nibh, posuere vitae quam in, vulputate pharetra magna. Sed a arcu neque. Ut sed | |
pharetra nunc. Sed ultrices libero eu nisi suscipit molestie. Aenean laoreet tortor | |
sed nulla scelerisque, tincidunt vulputate enim varius. Aliquam egestas, mauris | |
eu finibus fermentum, turpis tortor porta sem, nec euismod dolor massa id orci. | |
Nulla sem justo, molestie nec erat sit amet, iaculis ornare ipsum. Lorem ipsum | |
dolor sit amet, consectetur adipiscing elit. Quisque non dignissim nibh. Aliquam | |
porttitor, velit eget bibendum dictum, nunc elit tincidunt enim, et pharetra massa | |
odio ultrices leo. Cras quis laoreet sem. Nunc nunc elit, fringilla iaculis vehicula | |
a, ultrices eget tortor. Nulla facilisi. | |
icon: fa-solid fa-archway | |
dot_class: blue | |
sub_title: 2022-Q1 | |
- title: One | |
content: | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin felis eros, | |
facilisis sed feugiat a, efficitur ut neque. In vel nulla et nulla aliquet porta | |
ac at est. Praesent metus nibh, posuere vitae quam in, vulputate pharetra magna. | |
Sed a arcu neque. Ut sed pharetra nunc. Sed ultrices libero eu nisi suscipit molestie. | |
Aenean laoreet tortor sed nulla scelerisque, tincidunt vulputate enim varius. | |
Aliquam egestas, mauris eu finibus fermentum, turpis tortor porta sem, nec euismod | |
dolor massa id orci. Nulla sem justo, molestie nec erat sit amet, iaculis ornare | |
ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque non dignissim | |
nibh. | |
icon: fa-solid fa-star | |
dot_class: cyan | |
sub_title: 2022-Q2 | |
- title: Two | |
content: Lorem ipsum dolor sit amet. | |
icon: fa-solid fa-meteor | |
sub_title: 2022-Q3 | |
- title: Three | |
content: Lorem ipsum dolor sit amet. | |
dot_class: pink | |
sub_title: 2022-Q4 | |
- title: Four | |
content: Lorem ipsum dolor sit amet. | |
icon: fa-solid fa-fire | |
dot_class: cyan | |
sub_title: 2023-Q1 |
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
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="104" height="20" role="img" aria-label="π: video tutorial"><title>π: video tutorial</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="104" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="21" height="20" fill="#555"/><rect x="21" width="83" height="20" fill="blueviolet"/><rect width="104" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="115" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="110">π</text><text x="115" y="140" transform="scale(.1)" fill="#fff" textLength="110">π</text><text aria-hidden="true" x="615" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="730">video tutorial</text><text x="615" y="140" transform="scale(.1)" fill="#fff" textLength="730">video tutorial</text></g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment