├── .gitattributes ├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── banking.yml ├── defense.yml ├── main.yml ├── other.yml ├── services.yml └── tech.yml ├── _includes └── table.html ├── _layouts └── default.html ├── banking.html ├── css ├── base.css ├── table.css └── table.min.css ├── defense.html ├── favicon.ico ├── img ├── defense │ ├── raytheon.png │ ├── saic.png │ └── spacex.png ├── logo.png ├── other │ ├── bustle.jpg │ ├── buzzfeed.png │ └── vox.jpg ├── services │ ├── buffer.jpg │ ├── digitalocean.jpg │ ├── etsy.jpg │ ├── indiegogo.jpg │ ├── kickstarter.jpg │ ├── pandora.png │ ├── pinterest.png │ └── slack.png └── tech │ ├── HP.png │ ├── airbnb.png │ ├── amazon.jpeg │ ├── apple.png │ ├── atlassian.jpg │ ├── canonical.png │ ├── cisco.jpeg │ ├── cloudera.png │ ├── dell.jpeg │ ├── ebay.jpeg │ ├── facebook.png │ ├── fogcreek.jpg │ ├── github.jpeg │ ├── google.png │ ├── groupon.png │ ├── hulu.png │ ├── ibm.jpeg │ ├── ingrammicro.jpeg │ ├── intel.jpeg │ ├── linkedin.jpeg │ ├── livingsocial.jpeg │ ├── microsoft.jpeg │ ├── netflix.jpeg │ ├── oracle.jpg │ ├── pivotal.jpg │ ├── redhat.png │ ├── salesforce.jpeg │ ├── sendgrid.png │ ├── shutterstock.jpg │ ├── sophicware.png │ ├── stackexchange.png │ ├── tesla.png │ ├── trello.png │ ├── twitter.jpeg │ ├── veeva.png │ ├── vmware.png │ ├── yahoo.png │ ├── yelp.jpeg │ └── zynga.jpeg ├── index.html ├── jekyll.gems ├── js └── app.js ├── lib └── semantic │ ├── css │ ├── semantic.css │ ├── semantic.min.css │ └── semantic.no-resp.css │ ├── fonts │ ├── basic.icons.eot │ ├── basic.icons.svg │ ├── basic.icons.ttf │ ├── basic.icons.woff │ ├── icons.eot │ ├── icons.otf │ ├── icons.svg │ ├── icons.ttf │ └── icons.woff │ ├── images │ ├── loader-large-inverted.gif │ ├── loader-large.gif │ ├── loader-medium-inverted.gif │ ├── loader-medium.gif │ ├── loader-mini-inverted.gif │ ├── loader-mini.gif │ ├── loader-small-inverted.gif │ └── loader-small.gif │ └── javascript │ ├── semantic.js │ └── semantic.min.js ├── other.html └── tech.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | *.idea 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | jekyll 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-1.9.3-p547 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/CNAME -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/banking.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_data/banking.yml -------------------------------------------------------------------------------- /_data/defense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_data/defense.yml -------------------------------------------------------------------------------- /_data/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_data/main.yml -------------------------------------------------------------------------------- /_data/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_data/other.yml -------------------------------------------------------------------------------- /_data/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_data/services.yml -------------------------------------------------------------------------------- /_data/tech.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_data/tech.yml -------------------------------------------------------------------------------- /_includes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_includes/table.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /banking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/banking.html -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/css/base.css -------------------------------------------------------------------------------- /css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/css/table.css -------------------------------------------------------------------------------- /css/table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/css/table.min.css -------------------------------------------------------------------------------- /defense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/defense.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/defense/raytheon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/defense/raytheon.png -------------------------------------------------------------------------------- /img/defense/saic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/defense/saic.png -------------------------------------------------------------------------------- /img/defense/spacex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/defense/spacex.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/other/bustle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/other/bustle.jpg -------------------------------------------------------------------------------- /img/other/buzzfeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/other/buzzfeed.png -------------------------------------------------------------------------------- /img/other/vox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/other/vox.jpg -------------------------------------------------------------------------------- /img/services/buffer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/buffer.jpg -------------------------------------------------------------------------------- /img/services/digitalocean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/digitalocean.jpg -------------------------------------------------------------------------------- /img/services/etsy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/etsy.jpg -------------------------------------------------------------------------------- /img/services/indiegogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/indiegogo.jpg -------------------------------------------------------------------------------- /img/services/kickstarter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/kickstarter.jpg -------------------------------------------------------------------------------- /img/services/pandora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/pandora.png -------------------------------------------------------------------------------- /img/services/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/pinterest.png -------------------------------------------------------------------------------- /img/services/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/services/slack.png -------------------------------------------------------------------------------- /img/tech/HP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/HP.png -------------------------------------------------------------------------------- /img/tech/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/airbnb.png -------------------------------------------------------------------------------- /img/tech/amazon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/amazon.jpeg -------------------------------------------------------------------------------- /img/tech/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/apple.png -------------------------------------------------------------------------------- /img/tech/atlassian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/atlassian.jpg -------------------------------------------------------------------------------- /img/tech/canonical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/canonical.png -------------------------------------------------------------------------------- /img/tech/cisco.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/cisco.jpeg -------------------------------------------------------------------------------- /img/tech/cloudera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/cloudera.png -------------------------------------------------------------------------------- /img/tech/dell.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/dell.jpeg -------------------------------------------------------------------------------- /img/tech/ebay.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/ebay.jpeg -------------------------------------------------------------------------------- /img/tech/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/facebook.png -------------------------------------------------------------------------------- /img/tech/fogcreek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/fogcreek.jpg -------------------------------------------------------------------------------- /img/tech/github.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/github.jpeg -------------------------------------------------------------------------------- /img/tech/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/google.png -------------------------------------------------------------------------------- /img/tech/groupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/groupon.png -------------------------------------------------------------------------------- /img/tech/hulu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/hulu.png -------------------------------------------------------------------------------- /img/tech/ibm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/ibm.jpeg -------------------------------------------------------------------------------- /img/tech/ingrammicro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/ingrammicro.jpeg -------------------------------------------------------------------------------- /img/tech/intel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/intel.jpeg -------------------------------------------------------------------------------- /img/tech/linkedin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/linkedin.jpeg -------------------------------------------------------------------------------- /img/tech/livingsocial.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/livingsocial.jpeg -------------------------------------------------------------------------------- /img/tech/microsoft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/microsoft.jpeg -------------------------------------------------------------------------------- /img/tech/netflix.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/netflix.jpeg -------------------------------------------------------------------------------- /img/tech/oracle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/oracle.jpg -------------------------------------------------------------------------------- /img/tech/pivotal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/pivotal.jpg -------------------------------------------------------------------------------- /img/tech/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/redhat.png -------------------------------------------------------------------------------- /img/tech/salesforce.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/salesforce.jpeg -------------------------------------------------------------------------------- /img/tech/sendgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/sendgrid.png -------------------------------------------------------------------------------- /img/tech/shutterstock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/shutterstock.jpg -------------------------------------------------------------------------------- /img/tech/sophicware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/sophicware.png -------------------------------------------------------------------------------- /img/tech/stackexchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/stackexchange.png -------------------------------------------------------------------------------- /img/tech/tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/tesla.png -------------------------------------------------------------------------------- /img/tech/trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/trello.png -------------------------------------------------------------------------------- /img/tech/twitter.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/twitter.jpeg -------------------------------------------------------------------------------- /img/tech/veeva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/veeva.png -------------------------------------------------------------------------------- /img/tech/vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/vmware.png -------------------------------------------------------------------------------- /img/tech/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/yahoo.png -------------------------------------------------------------------------------- /img/tech/yelp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/yelp.jpeg -------------------------------------------------------------------------------- /img/tech/zynga.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/img/tech/zynga.jpeg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/index.html -------------------------------------------------------------------------------- /jekyll.gems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/jekyll.gems -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/js/app.js -------------------------------------------------------------------------------- /lib/semantic/css/semantic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/css/semantic.css -------------------------------------------------------------------------------- /lib/semantic/css/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/css/semantic.min.css -------------------------------------------------------------------------------- /lib/semantic/css/semantic.no-resp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/css/semantic.no-resp.css -------------------------------------------------------------------------------- /lib/semantic/fonts/basic.icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/basic.icons.eot -------------------------------------------------------------------------------- /lib/semantic/fonts/basic.icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/basic.icons.svg -------------------------------------------------------------------------------- /lib/semantic/fonts/basic.icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/basic.icons.ttf -------------------------------------------------------------------------------- /lib/semantic/fonts/basic.icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/basic.icons.woff -------------------------------------------------------------------------------- /lib/semantic/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/icons.eot -------------------------------------------------------------------------------- /lib/semantic/fonts/icons.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/icons.otf -------------------------------------------------------------------------------- /lib/semantic/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/icons.svg -------------------------------------------------------------------------------- /lib/semantic/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/icons.ttf -------------------------------------------------------------------------------- /lib/semantic/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/fonts/icons.woff -------------------------------------------------------------------------------- /lib/semantic/images/loader-large-inverted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-large-inverted.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-large.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-medium-inverted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-medium-inverted.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-medium.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-mini-inverted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-mini-inverted.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-mini.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-small-inverted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-small-inverted.gif -------------------------------------------------------------------------------- /lib/semantic/images/loader-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/images/loader-small.gif -------------------------------------------------------------------------------- /lib/semantic/javascript/semantic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/javascript/semantic.js -------------------------------------------------------------------------------- /lib/semantic/javascript/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/lib/semantic/javascript/semantic.min.js -------------------------------------------------------------------------------- /other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/other.html -------------------------------------------------------------------------------- /tech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleunion/opendiversitydata/HEAD/tech.html --------------------------------------------------------------------------------