Skip to content

Instantly share code, notes, and snippets.

@mandiwise
Last active April 17, 2019 20:14
Show Gist options
  • Select an option

  • Save mandiwise/25dbcfd558748f6afded7dcebe23f9a3 to your computer and use it in GitHub Desktop.

Select an option

Save mandiwise/25dbcfd558748f6afded7dcebe23f9a3 to your computer and use it in GitHub Desktop.

Revisions

  1. mandiwise revised this gist Apr 17, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion data.js
    Original file line number Diff line number Diff line change
    @@ -73,4 +73,4 @@ const data = {
    ]
    };

    module.exports = { data };
    module.exports = data;
  2. mandiwise revised this gist Jun 28, 2018. 1 changed file with 38 additions and 30 deletions.
    68 changes: 38 additions & 30 deletions data.js
    Original file line number Diff line number Diff line change
    @@ -1,68 +1,76 @@
    export const data = {
    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.',
    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.',
    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.',
    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.',
    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.',
    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.',
    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',
    title: "Star Wars: Episode IV - A New Hope",
    releaseDate: "25 May 1977",
    stars: [1, 2, 3],
    director: 5,
    director: 5
    },
    {
    id: 2,
    title: 'Raiders of the Lost Ark',
    releaseDate: '12 June 1981',
    title: "Raiders of the Lost Ark",
    releaseDate: "12 June 1981",
    stars: [2, 4],
    director: 6
    }
    ]
    };

    module.exports = { data };
  3. mandiwise created this gist Jul 17, 2017.
    68 changes: 68 additions & 0 deletions data.js
    Original 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
    }
    ]
    };