Created
November 8, 2017 20:15
-
-
Save byrichardpowell/d5fdf4ce5986f74f7c6379b59af79b88 to your computer and use it in GitHub Desktop.
JSON data for reddit comments
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
// Comments for https://www.reddit.com/r/formula1/comments/7aq9hf/massa_announces_his_retirement_from_f1/ | |
const post = { | |
id: 111, | |
title: "Massa announces his retirement from F1" | |
}; | |
const comments = [ | |
{ | |
id: 222, | |
parent: 111, | |
children: [333], | |
text: | |
"I still remember jumping up and down in front of the TV as a kid when he almost won his WDC. Enjoy your retirement. You earned it." | |
}, | |
{ | |
id: 333, | |
parent: 222, | |
children: [444], | |
text: | |
"Massa had bad luck that year . He made mistakes but an engine failure and that pit stop mistake in Singapore are some things you can't control" | |
}, | |
{ | |
id: 444, | |
parent: 333, | |
children: [555], | |
text: | |
"Two engine failures - he was running at the tail-end of the points in Australia too, IIRC, when the engine died." | |
}, | |
{ | |
id: 555, | |
parent: 444, | |
children: null, | |
text: "Tail end of the points, loses title by one point." | |
}, | |
{ | |
id: 666, | |
parent: 111, | |
children: [777, 888], | |
text: "Looks like a hostage video" | |
}, | |
{ | |
id: 888, | |
parent: 666, | |
children: [999], | |
text: "If you do not retire...I'll make you. --Daniil Kvyat, probably" | |
}, | |
{ | |
id: 999, | |
parent: 888, | |
children: null, | |
text: "Now my frjiend you kneed to kiw me de tsance tvo draiv." | |
}, | |
{ | |
id: 777, | |
parent: 666, | |
children: null, | |
text: "Claire Williams is behind the camera with a gun" | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment