Last active
April 17, 2019 20:14
-
-
Save mandiwise/25dbcfd558748f6afded7dcebe23f9a3 to your computer and use it in GitHub Desktop.
Revisions
-
mandiwise revised this gist
Apr 17, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -73,4 +73,4 @@ const data = { ] }; module.exports = data; -
mandiwise revised this gist
Jun 28, 2018 . 1 changed file with 38 additions and 30 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,68 +1,76 @@ const data = { people: [ { id: 1, name: "Mark Hamill", birthday: "September 25, 1951", placeOfBirth: "Oakland, California, USA", bio: "Mark Hamill is best known for his portrayal of Luke Skywalker in the original Star Wars trilogy.", filmography: [1] }, { id: 2, name: "Harrison Ford", birthday: "July 13, 1942", placeOfBirth: "Chicago, Illinois, USA", bio: "Harrison Ford was born on July 13, 1942 in Chicago, Illinois, to Dorothy (Nidelman), a radio actress, and Christopher Ford (born John William Ford), an actor turned advertising executive.", filmography: [1, 2] }, { id: 3, name: "Carrie Fisher", birthday: "October 21, 1956", placeOfBirth: "Burbank, California, USA", bio: "Carrie Frances Fisher was born on October 21, 1956 in Beverly Hills, Los Angeles, California, to singers/actors Eddie Fisher and Debbie Reynolds.", filmography: [1] }, { id: 4, name: "Karen Allen", birthday: "October 5, 1951", placeOfBirth: "Carrollton, Illinois, USA", bio: "Karen Jane Allen was born in Carrollton, rural southern Illinois, to Patricia (Howell), a teacher, and Carroll Thompson Allen, an FBI agent.", filmography: [2] }, { id: 5, name: "George Lucas", birthday: "May 14, 1944", placeOfBirth: "Modesto, California, USA", bio: "George Walton Lucas, Jr. was raised on a walnut ranch in Modesto, California. His father was a stationery store owner and he had three siblings.", filmography: [1] }, { id: 6, name: "Steven Spielberg", birthday: "December 18, 1946", placeOfBirth: "Cincinnati, Ohio, USA", bio: "Undoubtedly one of the most influential film personalities in the history of film, Steven Spielberg is perhaps Hollywood's best known director and one of the wealthiest filmmakers in the world.", filmography: [2] } ], movies: [ { id: 1, title: "Star Wars: Episode IV - A New Hope", releaseDate: "25 May 1977", stars: [1, 2, 3], director: 5 }, { id: 2, title: "Raiders of the Lost Ark", releaseDate: "12 June 1981", stars: [2, 4], director: 6 } ] }; module.exports = { data }; -
mandiwise created this gist
Jul 17, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ export const data = { people: [ { id: 1, name: 'Mark Hamill', birthday: 'September 25, 1951', placeOfBirth: 'Oakland, California, USA', bio: 'Mark Hamill is best known for his portrayal of Luke Skywalker in the original Star Wars trilogy.', filmography: [1] }, { id: 2, name: 'Harrison Ford', birthday: 'July 13, 1942', placeOfBirth: 'Chicago, Illinois, USA', bio: 'Harrison Ford was born on July 13, 1942 in Chicago, Illinois, to Dorothy (Nidelman), a radio actress, and Christopher Ford (born John William Ford), an actor turned advertising executive.', filmography: [1, 2] }, { id: 3, name: 'Carrie Fisher', birthday: 'October 21, 1956', placeOfBirth: 'Burbank, California, USA', bio: 'Carrie Frances Fisher was born on October 21, 1956 in Beverly Hills, Los Angeles, California, to singers/actors Eddie Fisher and Debbie Reynolds.', filmography: [1] }, { id: 4, name: 'Karen Allen', birthday: 'October 5, 1951', placeOfBirth: 'Carrollton, Illinois, USA', bio: 'Karen Jane Allen was born in Carrollton, rural southern Illinois, to Patricia (Howell), a teacher, and Carroll Thompson Allen, an FBI agent.', filmography: [2] }, { id: 5, name: 'George Lucas', birthday: 'May 14, 1944', placeOfBirth: 'Modesto, California, USA', bio: 'George Walton Lucas, Jr. was raised on a walnut ranch in Modesto, California. His father was a stationery store owner and he had three siblings.', filmography: [1] }, { id: 6, name: 'Steven Spielberg', birthday: 'December 18, 1946', placeOfBirth: 'Cincinnati, Ohio, USA', bio: 'Undoubtedly one of the most influential film personalities in the history of film, Steven Spielberg is perhaps Hollywood\'s best known director and one of the wealthiest filmmakers in the world.', filmography: [2] } ], movies: [ { id: 1, title: 'Star Wars: Episode IV - A New Hope', releaseDate: '25 May 1977', stars: [1, 2, 3], director: 5, }, { id: 2, title: 'Raiders of the Lost Ark', releaseDate: '12 June 1981', stars: [2, 4], director: 6 } ] };