8bitnintendo-science

8bitnintendo-science

A fan-made Jekyll site tracking Dr. Jeff Gerstmann's scientific journey of #BuildingTheList.

8bit Nintendo Science

This is a fan-maintained Jekyll site hosted on GitHub Pages that tracks Dr. Jeff Gerstmann’s scientific mission to rank all NES games released in North America. (YouTube).

Contributing

Feel free to open an issue or pull request to help improve the site.

The main content of this site is on /_data/list.csv.

Column Description
game Title of the game
ep Episode number where the game was discussed
ytid YouTube video ID for the episode
seconds Timestamp (in seconds) where the game appears in the video
screenshot Filename of the game’s image in the Libretro Thumbnails repository
wiki_line Line number for the game in _data/licensed_games.csv or _data/unlicensed_games.csv. Prefixed with l_ or u_ to indicate the source file.

The template will try to find the content for screenshot and wiki_line automatically based on the game title.

Due to GitHub Pages restrictions (no custom code), this is limited to simple string matching using Jekyll’s where_exp filter. When the automatic search fails, you'll have to manually add the content.

You can search for the content in data.html.

Running Locally

To run the site locally with Jekyll:

  1. Make sure you have Ruby and Bundler installed.

  2. Clone the repository:

    git clone https://github.com/vNakamura/8bitnintendo-science.git
    cd 8bitnintendo-science
    
  3. Install dependencies:

    bundle install
    
  4. Run the Jekyll server:

    bundle exec jekyll serve --livereload
    
  5. Open your browser and go to http://localhost:4000.

More information on https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll