Last active
May 26, 2019 04:41
-
-
Save solarkennedy/2b826a6b90128a58c9f7f360cb87d1a8 to your computer and use it in GitHub Desktop.
A demonstration of some surprising yaml junk
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
$ uq troll-yaml.yaml | |
{ | |
"country list": [ | |
"US", | |
"GB", | |
false | |
], | |
"end_date": 20130510, | |
"favorite_prog_rock_band": true, | |
"homedir_location": null, | |
"homedir_permissions": 292, | |
"really long string": " what if seinfeld still on TV today ", | |
"ssl_expire_date": "2014-29-37", | |
"start_date": "2013-05-10" | |
} |
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
--- | |
country list: | |
- US | |
- GB | |
- NO | |
favorite_prog_rock_band: Yes | |
homedir_location: ~ | |
homedir_permissions: 0444 | |
start_date: 2013-05-10 | |
end_date: 2013_05_10 | |
ssl_expire_date: 2014-29-37 #TODAY! | |
really long string: " | |
what | |
if | |
seinfeld | |
still | |
on | |
TV | |
today | |
" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment