Giter Club home page Giter Club logo

bibviz's Introduction

BibViz Project

A project to visualize negative aspects of the Bible in a way that is not only visually appealing but that makes exploring those aspects of the book quick and intuitive. The main focus of the project is Bible contradictions, but it also highlights biblical scientific and historical inaccuracies, cruelty & violence in the Bible, misogyny in the Bible, and homophobia in the Bible.

Data for the website is generated from various sources, including the Skeptic's Annotated Bible, Infidels.org, EvilBible.com, etc. See the scripts directory for how each piece was generated. Note that some information is managed by hand as not everything can be generated from the source pages.

The web directory contains everything required for the website, which is generated by a static site generator called Wintersmith. Several modifications/plugins are used, which can be found in the web/plugins directory.

This project makes use of Node.js, Javascript, Coffeescript, Cheerio (a jQuery-like library), Needle, Async.js, D3.js, Wintersmith, HTML, Stylus, and Nunjucks templates.

Contribution Ideas

The following is a non-exhaustive list of possible contribution ideas. Many require little or even zero programming experience. Feel free to fork and choose one:

  • Translations
  • New data sources for web/contents/data/contra.json
  • Additional visualizations using D3.js
  • Blog entries
  • Meta-analysis of all data sets
  • Tagging contradictions by severity
  • Tagging contradictions by Christian sect beliefs
  • Support for newer Bible versions (e.g. NIV, ESV)
    • Part of this work would be tagging contradictions by version
  • Tagging contradictions with Christian responses
  • Style, script, page, and search optimizations

Running Locally

First make sure you have Node.js installed, then run some setup commands:

cd web
npm install
npm install -g wintersmith
cp ../cache/kjv-full.json.gz contents/data/
gunzip contents/data/kjv-full.json.gz

For a live preview at http://localhost:8080:

wintersmith preview

To build the site into the build directory:

wintersmith build --clean

Wintersmith Modifications

The following extra features are implemented as plugins to Wintersmith:

  • Blog support with Atom.xml feed generation
  • Pass-through JSON data files in the contents/data directory
  • Exposing JSON data files to the page renderer
  • i18n support via a preprocessor template tag {% trans %}some string{% endtrans %}
  • Generation of translated HTML files based on available languages and translate: true metadata
  • Nunjucks templates with Markdown content that can contain Nunjucks tags
  • A generator to create individual contradiction pages
  • Various utilities (book links, getting Bible verses, etc)

Data Format

Various data files are used to generate the BibViz website. The files fall into three broad categories: Bible information, contradiction information, and specific issue information (used to generate issue bar charts). All of the files use JSON as their format.

Bible Information

The format of the Bible information data files (kjv.json and kjv-full.json) is something like the following:

{
    "version": "kjv",
    "wordCount": 123,
    "charCount": 123,
    "sections": [
        {
            "name": "Old Testament",
            "wordCount": 123,
            "charCount": 123,
            "relativeLength": 0.7,
            "books": [
                {
                    "name": "The first book of Moses, called Genesis",
                    "shortName": "Genesis",
                    "wordCount": 123,
                    "charCount": 123,
                    "relativeLength": 0.1,
                    "chapters": [
                        {
                            "name": "Chapter 1",
                            "wordCount": 123,
                            "charCount": 123,
                            "relativeLength": 0.3,
                            "verseCount": 123
                        }
                    ]
                }
            ]
        }
    ]
}

The kjv-full.json additionally adds each verse to the file in a verses array alongside verseCount, and is used to generate individual contradiction pages where the verses are displayed on the page. The full version is not loaded dynamically when visitors view a page due to its large size.

Contradiction Information

The format of the contradiction information data file (contra.json) is something like the following:

{
    "sab": {
        "name": "sab",
        "desc": "Skeptic's Annotated Bible",
        "url": "http://skepticsannotatedbible.com/contra/",
        "contradictions": [
            {
                "desc": "How many men did the chief of David's captains kill?",
                "refs": {
                    "300": [
                        "1 Chronicles 11:11"
                    ],
                    "800": [
                        "2 Samuel 23:8"
                    ]
                },
                "url": "300or800.html",
                ... other metadata ...
            },
            ... more contradictions ...
        ]
    },
    ... other sources ...
}

Issue Information

The format of the issue bar chart information data files (science.json, violence.json, misogyny.json, and homosexual.json) is really just a list of books which each contain a list of references:

[
    {
        "name": "Genesis",
        "refs": [
            "1:1",
            "1:3-5",
            "2:3",
            ... more refs ...
        ]
    },
    ... more books ...
]

License

This creative work is licensed under a Creative Commons Share-Alike Attribution Unported 3.0 license, and relevant source code in the scripts and web directories are licensed under an MIT-style license. All contributions will be licensed in a similar fashion.

bibviz's People

Contributors

danielgtaylor avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.